Skip to content

Commit 4a11d64

Browse files
committed
forbid rf pushdown through asof join
1 parent 31cd3c7 commit 4a11d64

File tree

1 file changed

+3
-0
lines changed

1 file changed

+3
-0
lines changed

fe/fe-core/src/main/java/org/apache/doris/nereids/processor/post/RuntimeFilterPushDownVisitor.java

Lines changed: 3 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -245,6 +245,9 @@ public Boolean visitPhysicalHashJoin(PhysicalHashJoin<? extends Plan, ? extends
245245
&& !join.getOutputSet().containsAll(ctx.probeExpr.getInputSlots())) {
246246
return false;
247247
}
248+
if (join.getJoinType().isAsofJoin()) {
249+
return false;
250+
}
248251
boolean pushed = false;
249252

250253
if (ctx.builderNode instanceof PhysicalHashJoin) {

0 commit comments

Comments
 (0)