increase dimension cap to 5 in test cube
Project: http://git-wip-us.apache.org/repos/asf/kylin/repo Commit: http://git-wip-us.apache.org/repos/asf/kylin/commit/84408d5f Tree: http://git-wip-us.apache.org/repos/asf/kylin/tree/84408d5f Diff: http://git-wip-us.apache.org/repos/asf/kylin/diff/84408d5f Branch: refs/heads/master Commit: 84408d5f0b9d353e87d1f716eecdfc3f5183542d Parents: 7c38148 Author: Hongbin Ma <mahong...@apache.org> Authored: Wed May 31 14:11:46 2017 +0800 Committer: Roger Shi <rogershijich...@gmail.com> Committed: Wed May 31 17:14:55 2017 +0800 ---------------------------------------------------------------------- .../test_case_data/localmeta/cube_desc/ci_inner_join_cube.json | 2 +- .../test_case_data/localmeta/cube_desc/ci_left_join_cube.json | 2 +- kylin-it/src/test/resources/query/sql_limit/query03.sql | 4 ++-- 3 files changed, 4 insertions(+), 4 deletions(-) ---------------------------------------------------------------------- http://git-wip-us.apache.org/repos/asf/kylin/blob/84408d5f/examples/test_case_data/localmeta/cube_desc/ci_inner_join_cube.json ---------------------------------------------------------------------- diff --git a/examples/test_case_data/localmeta/cube_desc/ci_inner_join_cube.json b/examples/test_case_data/localmeta/cube_desc/ci_inner_join_cube.json index a5badcb..28a63d5 100644 --- a/examples/test_case_data/localmeta/cube_desc/ci_inner_join_cube.json +++ b/examples/test_case_data/localmeta/cube_desc/ci_inner_join_cube.json @@ -602,7 +602,7 @@ "BUYER_COUNTRY.NAME" ] ], - "dim_cap" : 3 + "dim_cap" : 5 } } ], http://git-wip-us.apache.org/repos/asf/kylin/blob/84408d5f/examples/test_case_data/localmeta/cube_desc/ci_left_join_cube.json ---------------------------------------------------------------------- diff --git a/examples/test_case_data/localmeta/cube_desc/ci_left_join_cube.json b/examples/test_case_data/localmeta/cube_desc/ci_left_join_cube.json index 3b0e852..f7ebfc8 100644 --- a/examples/test_case_data/localmeta/cube_desc/ci_left_join_cube.json +++ b/examples/test_case_data/localmeta/cube_desc/ci_left_join_cube.json @@ -548,7 +548,7 @@ "TEST_KYLIN_FACT.DEAL_YEAR" ] ], - "dim_cap" : 3 + "dim_cap" : 5 } }, { http://git-wip-us.apache.org/repos/asf/kylin/blob/84408d5f/kylin-it/src/test/resources/query/sql_limit/query03.sql ---------------------------------------------------------------------- diff --git a/kylin-it/src/test/resources/query/sql_limit/query03.sql b/kylin-it/src/test/resources/query/sql_limit/query03.sql index 4844395..765d8a1 100644 --- a/kylin-it/src/test/resources/query/sql_limit/query03.sql +++ b/kylin-it/src/test/resources/query/sql_limit/query03.sql @@ -17,7 +17,7 @@ -- SELECT - test_kylin_fact.lstg_format_name ,test_kylin_fact.cal_dt , sum(test_kylin_fact.price) as GMV, count(*) as TRANS_CNT + test_kylin_fact.cal_dt , sum(test_kylin_fact.price) as GMV, count(*) as TRANS_CNT 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 @@ -27,5 +27,5 @@ SELECT ON test_kylin_fact.lstg_site_id = test_sites.site_id where test_kylin_fact.seller_id = 10000002 + 4 - group by seller_id,test_kylin_fact.cal_dt,lstg_format_name + group by seller_id,test_kylin_fact.cal_dt limit 10