You are viewing a plain text version of this content. The canonical link for it is here.
Posted to commits@kylin.apache.org by ma...@apache.org on 2015/09/22 12:45:08 UTC

incubator-kylin git commit: use v2 as default

Repository: incubator-kylin
Updated Branches:
  refs/heads/KYLIN-942-test [created] e44bc25aa


use v2 as default


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

Branch: refs/heads/KYLIN-942-test
Commit: e44bc25aa99df47435aee588820b3dd03e63bbd7
Parents: d7c37e0
Author: honma <ho...@ebay.com>
Authored: Tue Sep 22 18:47:48 2015 +0800
Committer: honma <ho...@ebay.com>
Committed: Tue Sep 22 18:47:48 2015 +0800

----------------------------------------------------------------------
 .../main/java/org/apache/kylin/storage/hbase/HBaseStorage.java  | 5 +----
 1 file changed, 1 insertion(+), 4 deletions(-)
----------------------------------------------------------------------


http://git-wip-us.apache.org/repos/asf/incubator-kylin/blob/e44bc25a/storage-hbase/src/main/java/org/apache/kylin/storage/hbase/HBaseStorage.java
----------------------------------------------------------------------
diff --git a/storage-hbase/src/main/java/org/apache/kylin/storage/hbase/HBaseStorage.java b/storage-hbase/src/main/java/org/apache/kylin/storage/hbase/HBaseStorage.java
index 421f648..53465d8 100644
--- a/storage-hbase/src/main/java/org/apache/kylin/storage/hbase/HBaseStorage.java
+++ b/storage-hbase/src/main/java/org/apache/kylin/storage/hbase/HBaseStorage.java
@@ -35,10 +35,7 @@ import org.apache.kylin.storage.IStorageQuery;
 import org.apache.kylin.storage.cache.CacheFledgedDynamicQuery;
 import org.apache.kylin.storage.cache.CacheFledgedStaticQuery;
 import org.apache.kylin.storage.hbase.steps.HBaseMROutput;
-import org.apache.kylin.storage.hbase.steps.HBaseMROutput2;
 import org.apache.kylin.storage.hbase.steps.HBaseMROutput2Transition;
-import org.apache.kylin.storage.hybrid.HybridInstance;
-import org.apache.kylin.storage.hybrid.HybridStorageQuery;
 
 import com.google.common.base.Preconditions;
 
@@ -46,7 +43,7 @@ import com.google.common.base.Preconditions;
 public class HBaseStorage implements IStorage {
 
     private final static boolean allowStorageLayerCache = true;
-    private final static String defaultCubeStorageQuery = "org.apache.kylin.storage.hbase.cube.v1.CubeStorageQuery";
+    private final static String defaultCubeStorageQuery = "org.apache.kylin.storage.hbase.cube.v2.CubeStorageQuery";
     private final static String defaultIIStorageQuery = "org.apache.kylin.storage.hbase.ii.InvertedIndexStorageQuery";
 
     @Override