Browse Source

Merge pull request #10379 from jakesmith/hpcc-17536-6.2.2

HPCC-17536 Grouped Aggregate, incorrectly reporting grouped output

Reviewed-By: Richard Chapman <rchapman@hpccsystems.com>
Richard Chapman 7 năm trước cách đây
mục cha
commit
7dd656ec12
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;
+    }
 };