ygerzhedovich commented on code in PR #3070:
URL: https://github.com/apache/ignite-3/pull/3070#discussion_r1463115429
##########
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:
I don't see any related changes, which can lead to the change sequentially.
Which test show the problem?
--
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]