Skip to content

Commit

Permalink
[fix](Nereids): use == instead of id to identity PhysicalHashJoin (ap…
Browse files Browse the repository at this point in the history
  • Loading branch information
jackwener committed Sep 19, 2023
1 parent b092bda commit eea84ac
Showing 1 changed file with 1 addition and 1 deletion.
Original file line number Diff line number Diff line change
Expand Up @@ -209,7 +209,7 @@ public boolean pushDownRuntimeFilter(CascadesContext context, IdGenerator<Runtim
if (RuntimeFilterGenerator.DENIED_JOIN_TYPES.contains(getJoinType()) || isMarkJoin()) {
if (builderNode instanceof PhysicalHashJoin) {
PhysicalHashJoin<?, ?> builderJion = (PhysicalHashJoin<?, ?>) builderNode;
if (builderJion.id.asInt() == id.asInt()) {
if (builderJion == this) {
return false;
}
}
Expand Down

0 comments on commit eea84ac

Please sign in to comment.