Repository: incubator-kylin Updated Branches: refs/heads/0.8 7e88f0b38 -> 744daaabc
KYLIN-780 add a test case for where not(A=B) Project: http://git-wip-us.apache.org/repos/asf/incubator-kylin/repo Commit: http://git-wip-us.apache.org/repos/asf/incubator-kylin/commit/744daaab Tree: http://git-wip-us.apache.org/repos/asf/incubator-kylin/tree/744daaab Diff: http://git-wip-us.apache.org/repos/asf/incubator-kylin/diff/744daaab Branch: refs/heads/0.8 Commit: 744daaabca3e0daa304bf8aac6cdcf9153a321bf Parents: 7e88f0b Author: Li, Yang <[email protected]> Authored: Mon Jul 6 14:02:41 2015 +0800 Committer: Li, Yang <[email protected]> Committed: Mon Jul 6 14:02:41 2015 +0800 ---------------------------------------------------------------------- query/src/test/resources/query/sql/query08.sql | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) ---------------------------------------------------------------------- http://git-wip-us.apache.org/repos/asf/incubator-kylin/blob/744daaab/query/src/test/resources/query/sql/query08.sql ---------------------------------------------------------------------- diff --git a/query/src/test/resources/query/sql/query08.sql b/query/src/test/resources/query/sql/query08.sql index 2f64c7e..7a31541 100644 --- a/query/src/test/resources/query/sql/query08.sql +++ b/query/src/test/resources/query/sql/query08.sql @@ -18,5 +18,5 @@ select test_kylin_fact.lstg_format_name,sum(test_kylin_fact.price) as GMV , count(*) as TRANS_CNT from test_kylin_fact - where test_kylin_fact.lstg_format_name='FP-GTC' + where not (test_kylin_fact.lstg_format_name='FP-GTC') group by test_kylin_fact.lstg_format_name
