Repository: incubator-kylin Updated Branches: refs/heads/0.7-staging ce77dd292 -> f364ffcc6
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/f364ffcc Tree: http://git-wip-us.apache.org/repos/asf/incubator-kylin/tree/f364ffcc Diff: http://git-wip-us.apache.org/repos/asf/incubator-kylin/diff/f364ffcc Branch: refs/heads/0.7-staging Commit: f364ffcc6919ca186de326f81858c05ea87eb9a5 Parents: ce77dd2 Author: Li, Yang <[email protected]> Authored: Mon Jul 6 14:01:50 2015 +0800 Committer: Li, Yang <[email protected]> Committed: Mon Jul 6 14:01:50 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/f364ffcc/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
