englefly commented on code in PR #16927:
URL: https://github.com/apache/doris/pull/16927#discussion_r1121397851
##########
fe/fe-core/src/main/java/org/apache/doris/nereids/trees/plans/physical/RuntimeFilter.java:
##########
@@ -30,21 +30,37 @@ public class RuntimeFilter {
private final RuntimeFilterId id;
private final TRuntimeFilterType type;
private final Expression srcSlot;
+ //bitmap filter support target expression like k1+1, abs(k1)
+ //targetExpression is an expression on targetSlot, in which there is only
one non-const slot
+ private Expression targetExpression;
private Slot targetSlot;
private final int exprOrder;
- private PhysicalHashJoin builderNode;
+ private AbstractPhysicalJoin builderNode;
+
+ private boolean bitmapFilterNotIn;
Review Comment:
as we discussed, BE only support semi, not anti.
--
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]