Skip to content

Commit

Permalink
[fix](nereids) null-safe-eq runtime filter denies outer join #32927
Browse files Browse the repository at this point in the history
  • Loading branch information
englefly authored and Doris-Extras committed Mar 31, 2024
1 parent 63cd37b commit e0927e7
Showing 1 changed file with 6 additions and 0 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -211,6 +211,12 @@ public boolean pushDownRuntimeFilter(CascadesContext context, IdGenerator<Runtim
if (builderJoin == this) {
return false;
}
EqualPredicate equal = (EqualPredicate) builderNode.getHashJoinConjuncts().get(exprOrder);
if (equal instanceof NullSafeEqual) {
if (this.joinType.isOuterJoin()) {
return false;
}
}
}
}
EqualPredicate equal = (EqualPredicate) builderNode.getHashJoinConjuncts().get(exprOrder);
Expand Down

0 comments on commit e0927e7

Please sign in to comment.