HPCC-15756 Fix SMART,LOCAL group right input regression Reviewed-by: Gavin Halliday <ghalliday@hpccsystems.com>
@@ -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();