Cover GLOBAL IN for Distributed over Distributed

This commit is contained in:
Azat Khuzhin 2020-04-12 01:22:10 +03:00
parent 85448f4b13
commit a332d8b01e
2 changed files with 6 additions and 0 deletions

View File

@ -99,3 +99,5 @@ merge()
distributed_group_by_no_merge
33
33
GLOBAL IN
1

View File

@ -82,6 +82,10 @@ select count() from merge_dist_01223;
select 'distributed_group_by_no_merge';
select count() from merge_dist_01223 settings distributed_group_by_no_merge=1;
-- global in
select 'GLOBAL IN';
select distinct * from dist_01223 where key global in (select toInt32(1));
drop table merge_dist_01223;
drop table dist_01223;
drop table dist_layer_01223;