Fixed bad test #3837

This commit is contained in:
Alexey Milovidov 2019-01-16 03:20:36 +03:00
parent 36f679f59a
commit 368b5f965e

View File

@ -10,3 +10,5 @@ INSERT INTO test.rollup_having VALUES ('a', 'b');
SELECT a, b, count(*) FROM test.rollup_having GROUP BY a, b WITH ROLLUP HAVING a IS NOT NULL;
SELECT a, b, count(*) FROM test.rollup_having GROUP BY a, b WITH ROLLUP HAVING a IS NOT NULL and b IS NOT NULL;
DROP TABLE test.rollup_having;