minor, fix CI

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

Branch: refs/heads/master
Commit: fdacf5d3fac8740ab031f35d6317571f11a87c23
Parents: 5d2934b
Author: Hongbin Ma <mahong...@apache.org>
Authored: Wed May 24 10:42:30 2017 +0800
Committer: hongbin ma <m...@kyligence.io>
Committed: Wed May 24 10:52:57 2017 +0800

----------------------------------------------------------------------
 kylin-it/src/test/resources/query/sql_subquery/query32.sql | 2 +-
 kylin-it/src/test/resources/query/sql_subquery/query33.sql | 2 +-
 kylin-it/src/test/resources/query/sql_subquery/query34.sql | 2 +-
 3 files changed, 3 insertions(+), 3 deletions(-)
----------------------------------------------------------------------


http://git-wip-us.apache.org/repos/asf/kylin/blob/fdacf5d3/kylin-it/src/test/resources/query/sql_subquery/query32.sql
----------------------------------------------------------------------
diff --git a/kylin-it/src/test/resources/query/sql_subquery/query32.sql 
b/kylin-it/src/test/resources/query/sql_subquery/query32.sql
index 394ea15..6565aa0 100644
--- a/kylin-it/src/test/resources/query/sql_subquery/query32.sql
+++ b/kylin-it/src/test/resources/query/sql_subquery/query32.sql
@@ -1,5 +1,5 @@
 
-  select  sum(price) as sum_price,  (case when '1'='1' then 
test_cal_dt.week_beg_dt when '1'='2' then test_kylin_fact.lstg_site_id else 
test_kylin_fact.leaf_categ_id end) as xxx 
+  select  (case when '1'='1' then test_cal_dt.week_beg_dt when '1'='2' then 
test_kylin_fact.lstg_site_id else test_kylin_fact.leaf_categ_id end) as xxx , 
sum(price) as sum_price
   from test_kylin_fact
   inner JOIN edw.test_cal_dt as test_cal_dt
   ON test_kylin_fact.cal_dt = test_cal_dt.cal_dt

http://git-wip-us.apache.org/repos/asf/kylin/blob/fdacf5d3/kylin-it/src/test/resources/query/sql_subquery/query33.sql
----------------------------------------------------------------------
diff --git a/kylin-it/src/test/resources/query/sql_subquery/query33.sql 
b/kylin-it/src/test/resources/query/sql_subquery/query33.sql
index 08ecc8e..6ed1e37 100644
--- a/kylin-it/src/test/resources/query/sql_subquery/query33.sql
+++ b/kylin-it/src/test/resources/query/sql_subquery/query33.sql
@@ -1,5 +1,5 @@
 
-  select  sum(price) as sum_price,  lstg_format_name,(case when '2'='1' then 
test_kylin_fact.lstg_site_id  when '2'='2' then test_cal_dt.week_beg_dt else 
test_kylin_fact.leaf_categ_id end) as xxx 
+  select    lstg_format_name,(case when '2'='1' then 
test_kylin_fact.lstg_site_id  when '2'='2' then test_cal_dt.week_beg_dt else 
test_kylin_fact.leaf_categ_id end) as xxx ,sum(price) as sum_price
   from test_kylin_fact
   inner JOIN edw.test_cal_dt as test_cal_dt
   ON test_kylin_fact.cal_dt = test_cal_dt.cal_dt

http://git-wip-us.apache.org/repos/asf/kylin/blob/fdacf5d3/kylin-it/src/test/resources/query/sql_subquery/query34.sql
----------------------------------------------------------------------
diff --git a/kylin-it/src/test/resources/query/sql_subquery/query34.sql 
b/kylin-it/src/test/resources/query/sql_subquery/query34.sql
index 0dda9aa..56d04fa 100644
--- a/kylin-it/src/test/resources/query/sql_subquery/query34.sql
+++ b/kylin-it/src/test/resources/query/sql_subquery/query34.sql
@@ -1,5 +1,5 @@
 
-  select  sum(price) as sum_price,  (case when '3'='1' then 
test_cal_dt.week_beg_dt else   test_kylin_fact.cal_dt  end) as xxx 
+  select  (case when '3'='1' then test_cal_dt.week_beg_dt else   
test_kylin_fact.cal_dt  end) as xxx ,  sum(price) as sum_price
   from test_kylin_fact
   inner JOIN edw.test_cal_dt as test_cal_dt
   ON test_kylin_fact.cal_dt = test_cal_dt.cal_dt

Reply via email to