korlov42 commented on code in PR #3070:
URL: https://github.com/apache/ignite-3/pull/3070#discussion_r1463311924
##########
modules/sql-engine/src/main/java/org/apache/ignite/internal/sql/engine/exec/rel/NestedLoopJoinNode.java:
##########
@@ -462,7 +463,9 @@ private RightJoin(
@Override
protected void rewindInternal() {
left = null;
- rightNotMatchedIndexes.clear();
+ if (rightNotMatchedIndexes != null) {
Review Comment:
one of the test from SqlLogic suite. I've got NPE here and decided, that the
problem was in missed check. Turns out the issue was a bit trickier... I
changed execution test in order to cover this case
--
This is an automated message from the Apache Git Service.
To respond to the message, please log on to GitHub and use the
URL above to go to the specific comment.
To unsubscribe, e-mail: [email protected]
For queries about this service, please contact Infrastructure at:
[email protected]