mirror of
https://github.com/ClickHouse/ClickHouse.git
synced 2024-11-21 15:12:02 +00:00
test for insert into remote table function
This commit is contained in:
parent
b0f66bb234
commit
277e3b8364
@ -0,0 +1,7 @@
|
||||
1
|
||||
2
|
||||
2
|
||||
3
|
||||
3
|
||||
3
|
||||
|
@ -0,0 +1,8 @@
|
||||
create database if not exists test;
|
||||
drop table if exists test.tab;
|
||||
create table test.tab (val UInt8) engine = Log;
|
||||
insert into function remote('127.0.0.1', test.tab) values (1);
|
||||
insert into function remote('127.0.0.{1|2}', test.tab) values (2);
|
||||
insert into function remote('127.0.0.{1|2|3}', test.tab) values (3);
|
||||
select * from test.tab order by val;
|
||||
|
Loading…
Reference in New Issue
Block a user