mirror of
https://github.com/ClickHouse/ClickHouse.git
synced 2024-11-25 00:52:02 +00:00
Added test.
This commit is contained in:
parent
540a99c93a
commit
14ff6ae6d4
@ -0,0 +1 @@
|
|||||||
|
Distributed
|
@ -0,0 +1,8 @@
|
|||||||
|
drop table if exists test.t;
|
||||||
|
drop table if exists test.td;
|
||||||
|
create table test.t (val UInt32) engine = MergeTree order by val;
|
||||||
|
create table test.td engine = Distributed(test_cluster, 'test', 't') as test.t;
|
||||||
|
select engine from system.tables where database = 'test' and name = 'td';
|
||||||
|
drop table if exists test.t;
|
||||||
|
drop table if exists test.td;
|
||||||
|
|
Loading…
Reference in New Issue
Block a user