瀏覽代碼

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 年之前
父節點
當前提交
7dd656ec12
共有 1 個文件被更改,包括 4 次插入1 次删除
  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;
+    }
 };