Skip to content

Commit

Permalink
[fix](Nereids) fix test framework of hypergraph (apache#22434)
Browse files Browse the repository at this point in the history
  • Loading branch information
keanji-x authored Aug 1, 2023
1 parent f16a39a commit d4a6ef3
Showing 1 changed file with 1 addition and 1 deletion.
Original file line number Diff line number Diff line change
Expand Up @@ -640,7 +640,7 @@ Boolean evaluateExpr(JoinType joinType, Expression expr, Map<Slot, List<Integer>
lv = right.get(slots.get(0)).get(rightIndex);
rv = left.get(slots.get(1)).get(leftIndex);
}
Boolean res = (lv == rv);
Boolean res = (lv == rv) && (lv != null) && (rv != null);
if (joinType.isNullAwareLeftAntiJoin()) {
res |= (lv == null);
}
Expand Down

0 comments on commit d4a6ef3

Please sign in to comment.