englefly commented on code in PR #13990:
URL: https://github.com/apache/doris/pull/13990#discussion_r1018861250
##########
fe/fe-core/src/main/java/org/apache/doris/nereids/processor/post/RuntimeFilterContext.java:
##########
@@ -147,8 +171,28 @@ public void setTargetNullCount() {
targetNullCount++;
}
+ public void addEffectiveSrcNode(Plan node) {
+ effectiveSrcNodes.add(node);
+ }
+
+ public boolean isEffectiveSrcNode(Plan node) {
+ return effectiveSrcNodes.contains(node);
+ }
+
@VisibleForTesting
public int getTargetNullCount() {
return targetNullCount;
}
+
+ public void addJoinToTargetMap(PhysicalHashJoin join, ExprId exprId) {
+ if (joinToTargetExprId.get(join) != null) {
+ joinToTargetExprId.get(join).add(exprId);
+ } else {
+ joinToTargetExprId.put(join, Lists.newArrayList(exprId));
+ }
Review Comment:
done
--
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: [email protected]
For queries about this service, please contact Infrastructure at:
[email protected]
---------------------------------------------------------------------
To unsubscribe, e-mail: [email protected]
For additional commands, e-mail: [email protected]