mirror of
https://github.com/ClickHouse/ClickHouse.git
synced 2024-11-05 15:21:43 +00:00
97f2a2213e
* Move some code outside dbms/src folder * Fix paths
8 lines
377 B
SQL
8 lines
377 B
SQL
drop table if exists tab;
|
|
create table tab (val UInt8) engine = MergeTree order by val;
|
|
insert into function remote('127.0.0.2', currentDatabase(), tab) values (1);
|
|
insert into function remote('127.0.0.{2|3}', currentDatabase(), tab) values (2);
|
|
insert into function remote('127.0.0.{2|3|4}', currentDatabase(), tab) values (3);
|
|
select * from tab order by val;
|
|
drop table tab;
|