removed owned_cluster_for_insertion from StorageDistributed [#CLICKHOUSE-3397]

This commit is contained in:
Nikolai Kochetov 2017-12-11 20:29:24 +03:00
parent 5cbacbc2d7
commit 1ba891f3fc
2 changed files with 0 additions and 8 deletions

View File

@ -1,2 +0,0 @@
2017-11-03 42
2017-11-03 43

View File

@ -1,6 +0,0 @@
drop table if exists test.tab;
create table test.tab (date Date, val UInt64) engine = MergeTree(date, (date, val), 8192);
insert into table function remote('localhost', test.tab) values ('2017-11-03', 42);
insert into function remote('localhost', test.tab) values ('2017-11-03', 43);
select * from test.tab order by val;