This is an automated email from the ASF dual-hosted git repository. englefly pushed a commit to branch branch-3.0 in repository https://gitbox.apache.org/repos/asf/doris.git
The following commit(s) were added to refs/heads/branch-3.0 by this push: new f4c3e39536b [fix](nereids) Create Runtime filter even if equal.right is not in aliasTransferMap-branch3.0 (#46224) f4c3e39536b is described below commit f4c3e39536b25e03608d21d91713d5e435050dae Author: minghong <zhoumingh...@selectdb.com> AuthorDate: Sat Jan 4 11:51:46 2025 +0800 [fix](nereids) Create Runtime filter even if equal.right is not in aliasTransferMap-branch3.0 (#46224) ### What problem does this PR solve? Issue Number: close #xxx pick #46406 Related PR: #40815 --- .../apache/doris/nereids/processor/post/RuntimeFilterGenerator.java | 4 ---- 1 file changed, 4 deletions(-) diff --git a/fe/fe-core/src/main/java/org/apache/doris/nereids/processor/post/RuntimeFilterGenerator.java b/fe/fe-core/src/main/java/org/apache/doris/nereids/processor/post/RuntimeFilterGenerator.java index 3cff9dfd001..c7e8ae01fcd 100644 --- a/fe/fe-core/src/main/java/org/apache/doris/nereids/processor/post/RuntimeFilterGenerator.java +++ b/fe/fe-core/src/main/java/org/apache/doris/nereids/processor/post/RuntimeFilterGenerator.java @@ -275,10 +275,6 @@ public class RuntimeFilterGenerator extends PlanPostProcessor { continue; } long buildSideNdv = getBuildSideNdv(join, equalTo); - Pair<PhysicalRelation, Slot> pair = ctx.getAliasTransferMap().get(equalTo.right()); - if (pair == null) { - continue; - } if (equalTo.left().getInputSlots().size() == 1) { RuntimeFilterPushDownVisitor.PushDownContext pushDownContext = RuntimeFilterPushDownVisitor.PushDownContext.createPushDownContextForHashJoin( --------------------------------------------------------------------- To unsubscribe, e-mail: commits-unsubscr...@doris.apache.org For additional commands, e-mail: commits-h...@doris.apache.org