mirror of
https://github.com/ClickHouse/ClickHouse.git
synced 2024-11-05 15:21:43 +00:00
ffe8931cda
This reverts commit6cf5327269
, reversing changes made to4155771106
.
10 lines
228 B
SQL
10 lines
228 B
SQL
SET allow_experimental_live_view = 1;
|
|
|
|
DROP TABLE IF EXISTS test.mt;
|
|
|
|
CREATE TABLE test.mt (a Int32) Engine=MergeTree order by tuple();
|
|
CREATE LIVE VIEW test.lv AS SELECT * FROM test.mt;
|
|
|
|
DROP TABLE test.lv;
|
|
DROP TABLE test.mt;
|