mirror of
https://github.com/ClickHouse/ClickHouse.git
synced 2024-11-23 08:02:02 +00:00
Added test for Distributed table with Seting looking at tables with LowCardinality(String) in presense of memory efficient aggregation setting #6638
This commit is contained in:
parent
a4b2daae0d
commit
3574dfe1db
@ -0,0 +1 @@
|
||||
foo
|
@ -0,0 +1,11 @@
|
||||
DROP TABLE IF EXISTS data;
|
||||
DROP TABLE IF EXISTS dist;
|
||||
|
||||
create table data (key String) Engine=Memory();
|
||||
create table dist (key LowCardinality(String)) engine=Distributed(test_cluster_two_shards, currentDatabase(), data);
|
||||
insert into data values ('foo');
|
||||
set distributed_aggregation_memory_efficient=1;
|
||||
select * from dist group by key;
|
||||
|
||||
DROP TABLE data;
|
||||
DROP TABLE dist;
|
Loading…
Reference in New Issue
Block a user