minor, add back .../sql_derived/query13.sql which was lost during merge
Project: http://git-wip-us.apache.org/repos/asf/kylin/repo Commit: http://git-wip-us.apache.org/repos/asf/kylin/commit/ea10b6c4 Tree: http://git-wip-us.apache.org/repos/asf/kylin/tree/ea10b6c4 Diff: http://git-wip-us.apache.org/repos/asf/kylin/diff/ea10b6c4 Branch: refs/heads/master Commit: ea10b6c4d8449a1d4b4ad40e24b760b4cc291708 Parents: adb04cd Author: Li Yang <liy...@apache.org> Authored: Sun Sep 3 13:00:11 2017 +0800 Committer: liyang-gmt8 <liy...@apache.org> Committed: Mon Sep 4 17:26:22 2017 +0800 ---------------------------------------------------------------------- .../resources/query/sql_derived/query13.sql | 26 ++++++++++++++++++++ 1 file changed, 26 insertions(+) ---------------------------------------------------------------------- http://git-wip-us.apache.org/repos/asf/kylin/blob/ea10b6c4/kylin-it/src/test/resources/query/sql_derived/query13.sql ---------------------------------------------------------------------- diff --git a/kylin-it/src/test/resources/query/sql_derived/query13.sql b/kylin-it/src/test/resources/query/sql_derived/query13.sql new file mode 100644 index 0000000..754495f --- /dev/null +++ b/kylin-it/src/test/resources/query/sql_derived/query13.sql @@ -0,0 +1,26 @@ +-- +-- Licensed to the Apache Software Foundation (ASF) under one +-- or more contributor license agreements. See the NOTICE file +-- distributed with this work for additional information +-- regarding copyright ownership. The ASF licenses this file +-- to you under the Apache License, Version 2.0 (the +-- "License"); you may not use this file except in compliance +-- with the License. You may obtain a copy of the License at +-- +-- http://www.apache.org/licenses/LICENSE-2.0 +-- +-- Unless required by applicable law or agreed to in writing, software +-- distributed under the License is distributed on an "AS IS" BASIS, +-- WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. +-- See the License for the specific language governing permissions and +-- limitations under the License. +-- + +select test_cal_dt.week_beg_dt, test_kylin_fact.lstg_format_name, test_category_groupings.meta_categ_name, 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 + inner JOIN test_category_groupings + ON test_kylin_fact.leaf_categ_id = test_category_groupings.leaf_categ_id AND test_kylin_fact.lstg_site_id = test_category_groupings.site_id + where test_cal_dt.week_beg_dt is not null + group by test_cal_dt.week_beg_dt, test_kylin_fact.lstg_format_name, test_category_groupings.meta_categ_name \ No newline at end of file