mirror of
https://github.com/ClickHouse/ClickHouse.git
synced 2024-11-13 11:04:10 +00:00
12 lines
257 B
SQL
12 lines
257 B
SQL
-- Tags: no-replicated-database, no-parallel, no-fasttest
|
|
|
|
SET allow_experimental_live_view = 1;
|
|
|
|
DROP TABLE IF EXISTS mt;
|
|
|
|
CREATE TABLE mt (a Int32) Engine=MergeTree order by tuple();
|
|
CREATE LIVE VIEW lv AS SELECT * FROM mt;
|
|
|
|
DROP TABLE lv;
|
|
DROP TABLE mt;
|