Prechádzať zdrojové kódy

HPCC-15756 Fix SMART,LOCAL group right input regression

Signed-off-by: Jake Smith <jake.smith@lexisnexis.com>
Jake Smith 9 rokov pred
rodič
commit
a1ba919d2f

+ 5 - 1
thorlcr/activities/lookupjoin/thlookupjoinslave.cpp

@@ -2129,7 +2129,11 @@ protected:
         {
             const void *next = right->nextRow();
             if (!next)
-                break;
+            {
+                next = right->nextRow();
+                if (!next)
+                    break;
+            }
             writer->putRow(next);
         }
         return channelCollector.getClear();