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/06/25 03:28:48 UTC

[kylin] branch 2.6.x 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 2.6.x
in repository https://gitbox.apache.org/repos/asf/kylin.git


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

commit d9434dd2b123bcb3f8afe217adc9a4428b81e49c
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) {