mirror of
https://github.com/ClickHouse/ClickHouse.git
synced 2024-11-24 08:32:02 +00:00
Added test [#METR-22301].
This commit is contained in:
parent
9120776fe1
commit
95fc632f41
@ -0,0 +1,3 @@
|
||||
(0,'Hello') 5
|
||||
(1,'World') 5
|
||||
(1)
|
2
dbms/tests/queries/0_stateless/00372_group_by_tuple.sql
Normal file
2
dbms/tests/queries/0_stateless/00372_group_by_tuple.sql
Normal file
@ -0,0 +1,2 @@
|
||||
SELECT if(number % 2, tuple(0, 'Hello'), tuple(1, 'World')) AS x, count() FROM (SELECT number FROM system.numbers LIMIT 10) GROUP BY x ORDER BY x;
|
||||
SELECT if(0, tuple(0), tuple(1)) AS x GROUP BY x;
|
Loading…
Reference in New Issue
Block a user