You are viewing a plain text version of this content. The canonical link for it is here.
Posted to commits@kylin.apache.org by sh...@apache.org on 2018/06/14 09:28:40 UTC

[kylin] 05/10: KYLIN-3360 add integration test

This is an automated email from the ASF dual-hosted git repository.

shaofengshi pushed a commit to branch master
in repository https://gitbox.apache.org/repos/asf/kylin.git

commit 189f7ae318ee0b7c4ccaf62c08dc2aec1a2e0e2c
Author: Zhong <nj...@apache.org>
AuthorDate: Mon May 14 13:34:44 2018 +0800

    KYLIN-3360 add integration test
---
 .../resources/query/sql_expression/query03.sql     | 26 ++++++++++++++++++++++
 1 file changed, 26 insertions(+)

diff --git a/kylin-it/src/test/resources/query/sql_expression/query03.sql b/kylin-it/src/test/resources/query/sql_expression/query03.sql
new file mode 100644
index 0000000..85fa0a5
--- /dev/null
+++ b/kylin-it/src/test/resources/query/sql_expression/query03.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 SLR_SEGMENT_CD, count(LSTG_FORMAT_NAME)
+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
+group by SLR_SEGMENT_CD
+order by SLR_SEGMENT_CD
\ No newline at end of file

-- 
To stop receiving notification emails like this one, please contact
shaofengshi@apache.org.