소스 검색

HPCC-17536 Grouped Aggregate, incorrectly reporting grouped output

Signed-off-by: Jake Smith <jake.smith@lexisnexisrisk.com>
Jake Smith 8 년 전
부모
커밋
3aadaf9dd6
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;
+    }
 };