mirror of
https://github.com/ClickHouse/ClickHouse.git
synced 2024-11-21 07:01:59 +00:00
Add test for missing items in string hashtables via GROUP BY
This commit is contained in:
parent
e102ad373a
commit
6e11c8a1a2
9
tests/queries/0_stateless/01279_dist_group_by.sql
Normal file
9
tests/queries/0_stateless/01279_dist_group_by.sql
Normal file
@ -0,0 +1,9 @@
|
||||
drop table if exists data_01279;
|
||||
|
||||
create table data_01279 (key String) Engine=TinyLog();
|
||||
insert into data_01279 select reinterpretAsString(number) from numbers(100000);
|
||||
|
||||
set max_rows_to_group_by=10;
|
||||
set group_by_overflow_mode='any';
|
||||
set group_by_two_level_threshold=100;
|
||||
select * from data_01279 group by key format Null;
|
Loading…
Reference in New Issue
Block a user