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/10/27 10:37:49 UTC

incubator-kylin git commit: KYLIN-942 make sure only trimmed gtinfo is pushed

Repository: incubator-kylin
Updated Branches:
  refs/heads/KYLIN-942-x 1b3b08eb9 -> 342ee79e0


KYLIN-942 make sure only trimmed gtinfo is pushed


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

Branch: refs/heads/KYLIN-942-x
Commit: 342ee79e0c7e46e0aa1bd0da53f9590a31a8057e
Parents: 1b3b08e
Author: honma <ho...@ebay.com>
Authored: Tue Oct 27 17:42:08 2015 +0800
Committer: honma <ho...@ebay.com>
Committed: Tue Oct 27 17:42:08 2015 +0800

----------------------------------------------------------------------
 .../org/apache/kylin/storage/hbase/cube/v2/CubeSegmentScanner.java | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)
----------------------------------------------------------------------


http://git-wip-us.apache.org/repos/asf/incubator-kylin/blob/342ee79e/storage-hbase/src/main/java/org/apache/kylin/storage/hbase/cube/v2/CubeSegmentScanner.java
----------------------------------------------------------------------
diff --git a/storage-hbase/src/main/java/org/apache/kylin/storage/hbase/cube/v2/CubeSegmentScanner.java b/storage-hbase/src/main/java/org/apache/kylin/storage/hbase/cube/v2/CubeSegmentScanner.java
index 18ba6fb..1eed318 100644
--- a/storage-hbase/src/main/java/org/apache/kylin/storage/hbase/cube/v2/CubeSegmentScanner.java
+++ b/storage-hbase/src/main/java/org/apache/kylin/storage/hbase/cube/v2/CubeSegmentScanner.java
@@ -83,7 +83,7 @@ public class CubeSegmentScanner implements IGTScanner {
         GTInfo trimmedInfo = GTInfo.deserialize(trimmedInfoBytes);
 
         for (GTScanRange range : scanRanges) {
-            scanRequests.add(new GTScanRequest(trimmedInfo, range,//range.replaceGTInfo(trimmedInfo),
+            scanRequests.add(new GTScanRequest(trimmedInfo, range.replaceGTInfo(trimmedInfo),
                     gtDimensions, gtAggrGroups, gtAggrMetrics, gtAggrFuncs, gtFilter, allowPreAggregate));
         }