You are viewing a plain text version of this content. The canonical link for it is here.
Posted to commits@kylin.apache.org by sh...@apache.org on 2018/06/20 11:36:18 UTC

[kylin] branch master updated: Minor, fix compile error

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

shaofengshi 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 dbaf37e  Minor, fix compile error
dbaf37e is described below

commit dbaf37ecbe44906f7a18b767ef23182e0562b44a
Author: nichunen <ch...@kyligence.io>
AuthorDate: Wed Jun 20 18:19:14 2018 +0800

    Minor, fix compile error
---
 .../src/main/java/org/apache/kylin/cube/inmemcubing/CuboidResult.java   | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/core-cube/src/main/java/org/apache/kylin/cube/inmemcubing/CuboidResult.java b/core-cube/src/main/java/org/apache/kylin/cube/inmemcubing/CuboidResult.java
index 28905bb..a21226d 100644
--- a/core-cube/src/main/java/org/apache/kylin/cube/inmemcubing/CuboidResult.java
+++ b/core-cube/src/main/java/org/apache/kylin/cube/inmemcubing/CuboidResult.java
@@ -28,7 +28,7 @@ public class CuboidResult {
     public final  GridTable table;
     public final int nRows;
     public final long timeSpent;
-    public final int aggrCacheMB;
+    public int aggrCacheMB;
 
     public CuboidResult(long cuboidId, GridTable table, int nRows, long timeSpent, int aggrCacheMB) {
         this.cuboidId = cuboidId;