ClickHouse/dbms/tests/queries/0_stateless/00763_create_query_as_table_engine_bug.sql
Nikolai Kochetov 95e4297601 Fix tests.
2018-11-29 11:19:14 +03:00

9 lines
347 B
SQL

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_shard_localhost, '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;