Added test [#METR-23539].

This commit is contained in:
Alexey Milovidov 2016-11-18 11:31:46 +03:00
parent 6d914bc4db
commit 643c2b747a
2 changed files with 10 additions and 0 deletions

View File

@ -0,0 +1,4 @@
hello 1
world 2
hello 3

View File

@ -0,0 +1,6 @@
DROP TABLE IF EXISTS test.enum_totals;
CREATE TABLE test.enum_totals (e Enum8('hello' = 1, 'world' = 2)) ENGINE = Memory;
INSERT INTO test.enum_totals VALUES ('hello'), ('world'), ('world');
SELECT e, count() FROM test.enum_totals GROUP BY e WITH TOTALS ORDER BY e;
DROP TABLE test.enum_totals;