You are viewing a plain text version of this content. The canonical link for it is here.
Posted to commits@kylin.apache.org by ni...@apache.org on 2019/05/15 06:18:05 UTC

[kylin] branch master updated: KYLIN-3978 InternalErrorException: null with precise count distinct

This is an automated email from the ASF dual-hosted git repository.

nic pushed a commit to branch master
in repository https://gitbox.apache.org/repos/asf/kylin.git


The following commit(s) were added to refs/heads/master by this push:
     new 6efcd79  KYLIN-3978 InternalErrorException: null with precise count distinct
6efcd79 is described below

commit 6efcd791842bf485e47971877f259a562e5563f5
Author: Temple Zhou <db...@gmail.com>
AuthorDate: Tue May 14 15:19:33 2019 +0800

    KYLIN-3978 InternalErrorException: null with precise count distinct
---
 .../org/apache/kylin/storage/hbase/cube/v2/CubeHBaseEndpointRPC.java     | 1 +
 1 file changed, 1 insertion(+)

diff --git a/storage-hbase/src/main/java/org/apache/kylin/storage/hbase/cube/v2/CubeHBaseEndpointRPC.java b/storage-hbase/src/main/java/org/apache/kylin/storage/hbase/cube/v2/CubeHBaseEndpointRPC.java
index d1aee2f..9e8614f 100644
--- a/storage-hbase/src/main/java/org/apache/kylin/storage/hbase/cube/v2/CubeHBaseEndpointRPC.java
+++ b/storage-hbase/src/main/java/org/apache/kylin/storage/hbase/cube/v2/CubeHBaseEndpointRPC.java
@@ -559,6 +559,7 @@ public class CubeHBaseEndpointRPC extends CubeHBaseRPC {
                 BytesUtil.writeVInt(scanRequest.getStorageScanRowNumThreshold(), out);
                 BytesUtil.writeVInt(scanRequest.getStoragePushDownLimit(), out);
                 BytesUtil.writeUTFString(scanRequest.getStorageBehavior(), out);
+                BytesUtil.writeBooleanArray(new boolean[]{storageContext.isExactAggregation()}, out);
                 out.flip();
                 return Bytes.toStringBinary(out.array(), out.position(), out.limit());
             } catch (BufferOverflowException boe) {