You are viewing a plain text version of this content. The canonical link for it is here.
Posted to commits@kylin.apache.org by li...@apache.org on 2016/04/24 03:55:11 UTC

kylin git commit: minor, remove the unused 'transient' in GTInfo

Repository: kylin
Updated Branches:
  refs/heads/master 4e169ecaf -> ff428cad1


minor, remove the unused 'transient' in GTInfo


Project: http://git-wip-us.apache.org/repos/asf/kylin/repo
Commit: http://git-wip-us.apache.org/repos/asf/kylin/commit/ff428cad
Tree: http://git-wip-us.apache.org/repos/asf/kylin/tree/ff428cad
Diff: http://git-wip-us.apache.org/repos/asf/kylin/diff/ff428cad

Branch: refs/heads/master
Commit: ff428cad1634eb8fcd2d982e21e0a51106c918a3
Parents: 4e169ec
Author: Yang Li <li...@apache.org>
Authored: Sun Apr 24 09:53:08 2016 +0800
Committer: Yang Li <li...@apache.org>
Committed: Sun Apr 24 09:53:08 2016 +0800

----------------------------------------------------------------------
 .../src/main/java/org/apache/kylin/gridtable/GTInfo.java     | 8 ++++----
 1 file changed, 4 insertions(+), 4 deletions(-)
----------------------------------------------------------------------


http://git-wip-us.apache.org/repos/asf/kylin/blob/ff428cad/core-cube/src/main/java/org/apache/kylin/gridtable/GTInfo.java
----------------------------------------------------------------------
diff --git a/core-cube/src/main/java/org/apache/kylin/gridtable/GTInfo.java b/core-cube/src/main/java/org/apache/kylin/gridtable/GTInfo.java
index 80a5a55..d6d4990 100644
--- a/core-cube/src/main/java/org/apache/kylin/gridtable/GTInfo.java
+++ b/core-cube/src/main/java/org/apache/kylin/gridtable/GTInfo.java
@@ -44,15 +44,15 @@ public class GTInfo {
     // column schema
     DataType[] colTypes;
     ImmutableBitSet colPreferIndex;
-    transient int nColumns;
-    transient ImmutableBitSet colAll;
-    transient TblColRef[] colRefs;
+    int nColumns;
+    ImmutableBitSet colAll;
+    TblColRef[] colRefs;
 
     // grid info
     ImmutableBitSet primaryKey; // order by, uniqueness is not required
     ImmutableBitSet[] colBlocks; // primary key must be the first column block
     int rowBlockSize; // 0: disable row block
-    transient ImmutableBitSet colBlocksAll;
+    ImmutableBitSet colBlocksAll;
 
     // must create from builder
     private GTInfo() {