[fix](Nereids): use == instead of id to identity PhysicalHashJoin (#24535)
This commit is contained in:
@ -209,7 +209,7 @@ public class PhysicalHashJoin<
|
||||
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;
|
||||
}
|
||||
}
|
||||
|
||||
Reference in New Issue
Block a user