XieJiann commented on code in PR #29828: URL: https://github.com/apache/doris/pull/29828#discussion_r1448385230
########## fe/fe-core/src/main/java/org/apache/doris/nereids/processor/post/RuntimeFilterContext.java: ########## @@ -147,6 +148,30 @@ public boolean equals(Object other) { private int targetNullCount = 0; + private final List<ExpandRF> expandedRF = Lists.newArrayList(); + + /** + * info about expand rf by inner join + */ + public static class ExpandRF { + public AbstractPhysicalJoin buildNode; + + public PhysicalRelation srcNode; + public PhysicalRelation target1; + + public PhysicalRelation target2; + + public EqualPredicate equal; + + public ExpandRF(AbstractPhysicalJoin buildNode, PhysicalRelation srcNode, + PhysicalRelation target1, PhysicalRelation target2, EqualPredicate equal) { + this.buildNode = buildNode; + this.srcNode = srcNode; + this.target1 = target1; + this.target2 = target2; Review Comment: Maybe the making sense variable name is better -- This is an automated message from the Apache Git Service. To respond to the message, please log on to GitHub and use the URL above to go to the specific comment. To unsubscribe, e-mail: commits-unsubscr...@doris.apache.org For queries about this service, please contact Infrastructure at: us...@infra.apache.org --------------------------------------------------------------------- To unsubscribe, e-mail: commits-unsubscr...@doris.apache.org For additional commands, e-mail: commits-h...@doris.apache.org