소스 검색

HPCC-15756 Fix SMART,LOCAL group right input regression

Signed-off-by: Jake Smith <jake.smith@lexisnexis.com>
Jake Smith 9 년 전
부모
커밋
a1ba919d2f
1개의 변경된 파일5개의 추가작업 그리고 1개의 파일을 삭제
  1. 5 1
      thorlcr/activities/lookupjoin/thlookupjoinslave.cpp

+ 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();