Cover distributed_aggregation_memory_efficient/group_by_two_level_threshold

This commit is contained in:
Azat Khuzhin 2020-03-30 21:25:29 +03:00
parent e26f0147f4
commit 7514f3a0e3
2 changed files with 11 additions and 0 deletions

View File

@ -78,3 +78,7 @@ GROUP BY ORDER BY distributed_aggregation_memory_efficient
0
1
2
GROUP BY ORDER BY distributed_aggregation_memory_efficient/group_by_two_level_threshold
0
1
2

View File

@ -46,6 +46,13 @@ select 'GROUP BY ORDER BY distributed_aggregation_memory_efficient';
select * from dist_01223 group by key order by key settings
distributed_aggregation_memory_efficient=1;
-- distributed_aggregation_memory_efficient/group_by_two_level_threshold
select 'GROUP BY ORDER BY distributed_aggregation_memory_efficient/group_by_two_level_threshold';
select * from dist_01223 group by key order by key settings
group_by_two_level_threshold=1,
group_by_two_level_threshold_bytes=1,
distributed_aggregation_memory_efficient=1;
drop table dist_01223;
drop table dist_layer_01223;
drop table data_01223;