Vladsz83 commented on code in PR #5294:
URL: https://github.com/apache/ignite-3/pull/5294#discussion_r2016484576


##########
modules/sql-engine/src/main/java/org/apache/ignite/internal/sql/engine/exec/rel/MergeJoinNode.java:
##########
@@ -989,10 +991,12 @@ protected void join() throws Exception {
                     } else {
                         if (left == null) {
                             if (waitingLeft == NOT_WAITING) {
+                                rightIdx = 0;

Review Comment:
   Should we introduce a methods like
   ```
           /** */
           private void clearRightMaterialization() {
               rightMaterialization = null;
               drainMaterialization = false;
               rightIdx = 0;
           }
   ```
   ?
   Sometimes we do
   ```
      rightIdx = 0;
      rightMaterialization = null;
   ```
   without
   `drainMaterialization = false`



-- 
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