You are viewing a plain text version of this content. The canonical link for it is here.
Posted to commits@kylin.apache.org by qh...@apache.org on 2015/06/01 18:54:42 UTC

incubator-kylin git commit: fix compile error

Repository: incubator-kylin
Updated Branches:
  refs/heads/0.8.0 765dfca8c -> 4739e0c4a


fix compile error


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

Branch: refs/heads/0.8.0
Commit: 4739e0c4a36d9a459690390267232005903cfb89
Parents: 765dfca
Author: qianhao.zhou <qi...@ebay.com>
Authored: Tue Jun 2 00:54:58 2015 +0800
Committer: qianhao.zhou <qi...@ebay.com>
Committed: Tue Jun 2 00:54:58 2015 +0800

----------------------------------------------------------------------
 job/pom.xml                                           |  8 ++++++++
 .../kylin/job/inmemcubing/GTMemDiskStoreTest.java     | 14 +++-----------
 2 files changed, 11 insertions(+), 11 deletions(-)
----------------------------------------------------------------------


http://git-wip-us.apache.org/repos/asf/incubator-kylin/blob/4739e0c4/job/pom.xml
----------------------------------------------------------------------
diff --git a/job/pom.xml b/job/pom.xml
index 18f933d..3819265 100644
--- a/job/pom.xml
+++ b/job/pom.xml
@@ -50,6 +50,14 @@
             <version>${project.parent.version}</version>
         </dependency>
 
+        <dependency>
+            <groupId>org.apache.kylin</groupId>
+            <artifactId>kylin-storage</artifactId>
+            <type>test-jar</type>
+            <scope>test</scope>
+            <version>${project.parent.version}</version>
+        </dependency>
+
 
         <dependency>
             <groupId>org.apache.kylin</groupId>

http://git-wip-us.apache.org/repos/asf/incubator-kylin/blob/4739e0c4/job/src/test/java/org/apache/kylin/job/inmemcubing/GTMemDiskStoreTest.java
----------------------------------------------------------------------
diff --git a/job/src/test/java/org/apache/kylin/job/inmemcubing/GTMemDiskStoreTest.java b/job/src/test/java/org/apache/kylin/job/inmemcubing/GTMemDiskStoreTest.java
index 37eb42d..9d044a0 100644
--- a/job/src/test/java/org/apache/kylin/job/inmemcubing/GTMemDiskStoreTest.java
+++ b/job/src/test/java/org/apache/kylin/job/inmemcubing/GTMemDiskStoreTest.java
@@ -17,21 +17,13 @@
 
 package org.apache.kylin.job.inmemcubing;
 
-import static org.junit.Assert.*;
+import org.apache.kylin.storage.gridtable.*;
+import org.junit.Test;
 
 import java.io.IOException;
 import java.util.List;
 
-import org.apache.kylin.job.inmemcubing.MemDiskStore;
-import org.apache.kylin.job.inmemcubing.MemoryBudgetController;
-import org.apache.kylin.storage.gridtable.GTBuilder;
-import org.apache.kylin.storage.gridtable.GTInfo;
-import org.apache.kylin.storage.gridtable.GTRecord;
-import org.apache.kylin.storage.gridtable.GTScanRequest;
-import org.apache.kylin.storage.gridtable.GridTable;
-import org.apache.kylin.storage.gridtable.IGTScanner;
-import org.apache.kylin.storage.gridtable.SimpleGridTableTest;
-import org.junit.Test;
+import static org.junit.Assert.assertEquals;
 
 public class GTMemDiskStoreTest {