[fix](nereids)should not infer predicate for nullaware anti-join (#30924)

This commit is contained in:
starocean999
2024-02-08 10:49:52 +08:00
committed by yiguolei
parent e8f614791e
commit 5e6e2f8061
5 changed files with 10 additions and 13 deletions

View File

@ -78,7 +78,6 @@ public class InferPredicates extends DefaultPlanRewriter<JobContext> implements
break;
case LEFT_OUTER_JOIN:
case LEFT_ANTI_JOIN:
case NULL_AWARE_LEFT_ANTI_JOIN:
right = inferNewPredicate(right, expressions);
break;
case RIGHT_OUTER_JOIN: