Browse Source

HPCC-17536 Grouped Aggregate, incorrectly reporting grouped output

Signed-off-by: Jake Smith <jake.smith@lexisnexisrisk.com>
Jake Smith 8 năm trước cách đây
mục cha
commit
3aadaf9dd6
1 tập tin đã thay đổi với 4 bổ sung1 xóa
  1. 4 1
      thorlcr/activities/aggregate/thgroupaggregateslave.cpp

+ 4 - 1
thorlcr/activities/aggregate/thgroupaggregateslave.cpp

@@ -73,13 +73,16 @@ public:
         dataLinkIncrement();
         return out.finalizeRowClear(sz);
     }
-
     virtual void getMetaInfo(ThorDataLinkMetaInfo &info) override
     {
         initMetaInfo(info);
         info.canReduceNumRows = true;
         info.fastThrough = true;
     }
+    virtual bool isGrouped() const override
+    {
+        return false;
+    }
 };