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/02/29 10:10:21 UTC

kylin git commit: KYLIN-1054 Enable beeline testcases

Repository: kylin
Updated Branches:
  refs/heads/1.x-staging 06861d19e -> 0917d485c


KYLIN-1054 Enable beeline testcases


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

Branch: refs/heads/1.x-staging
Commit: 0917d485ced52c2e9d2433856ac5b9baa1eee950
Parents: 06861d1
Author: lidongsjtu <li...@apache.org>
Authored: Mon Feb 29 17:10:04 2016 +0800
Committer: lidongsjtu <li...@apache.org>
Committed: Mon Feb 29 17:10:04 2016 +0800

----------------------------------------------------------------------
 .../test/java/org/apache/kylin/job/BuildCubeWithEngineTest.java  | 4 ++--
 1 file changed, 2 insertions(+), 2 deletions(-)
----------------------------------------------------------------------


http://git-wip-us.apache.org/repos/asf/kylin/blob/0917d485/job/src/test/java/org/apache/kylin/job/BuildCubeWithEngineTest.java
----------------------------------------------------------------------
diff --git a/job/src/test/java/org/apache/kylin/job/BuildCubeWithEngineTest.java b/job/src/test/java/org/apache/kylin/job/BuildCubeWithEngineTest.java
index d88af29..78e6ab3 100644
--- a/job/src/test/java/org/apache/kylin/job/BuildCubeWithEngineTest.java
+++ b/job/src/test/java/org/apache/kylin/job/BuildCubeWithEngineTest.java
@@ -209,7 +209,7 @@ public class BuildCubeWithEngineTest {
         long date3 = f.parse("2022-01-01").getTime();
         List<String> result = Lists.newArrayList();
         result.add(buildSegment("test_kylin_cube_with_slr_empty", date1, date2));
-        result.add(buildSegment("test_kylin_cube_with_slr_empty", date2, date3));
+        result.add(buildSegment("test_kylin_cube_with_slr_empty", date2, date3, true));
 
         // empty segment
         long date4 = f.parse("2050-01-01").getTime();
@@ -254,7 +254,7 @@ public class BuildCubeWithEngineTest {
         // date is 20220101000000
         dateStart = f.parse("2012-06-01").getTime();
         dateEnd = f.parse("2022-01-01").getTime();
-        result.add(buildSegment(cubeName, dateStart, dateEnd));
+        result.add(buildSegment(cubeName, dateStart, dateEnd, true));
         return result;
 
     }