Add test from the #2610 (closes: #2610)

This commit is contained in:
Azat Khuzhin 2020-04-12 00:41:52 +03:00
parent 98c603eaae
commit 85448f4b13
2 changed files with 9 additions and 0 deletions

View File

@ -0,0 +1,6 @@
-- Test from the issue https://github.com/ClickHouse/ClickHouse/issues/2610
drop table if exists data_01227;
create table data_01227 (key Int) Engine=MergeTree() order by key;
insert into data_01227 select * from numbers(10);
select * from remote('127.1', currentDatabase(), data_01227) prewhere key global in (select key from data_01227 prewhere key = 2);
select * from cluster('test_cluster_two_shards', currentDatabase(), data_01227) prewhere key global in (select key from data_01227 prewhere key = 2);