Vladsz83 commented on code in PR #11977:
URL: https://github.com/apache/ignite/pull/11977#discussion_r2213162591


##########
modules/calcite/src/main/java/org/apache/ignite/internal/processors/query/calcite/exec/rel/NestedLoopJoinNode.java:
##########
@@ -523,17 +493,10 @@ public RightJoin(
                 }
             }
 
-            if (waitingRight == 0)
-                rightSource().request(waitingRight = IN_BUFFER_SIZE);
-
-            if (waitingLeft == 0 && leftInBuf.isEmpty())
-                leftSource().request(waitingLeft = IN_BUFFER_SIZE);
+            if ((rightNotMatchedIndexes == null || 
rightNotMatchedIndexes.isEmpty()) && checkJoinFinished())

Review Comment:
   There is no method for a `BitSet`. Not sure we should add for this simple 
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: notifications-unsubscr...@ignite.apache.org

For queries about this service, please contact Infrastructure at:
us...@infra.apache.org

Reply via email to