mirror of
https://github.com/ClickHouse/ClickHouse.git
synced 2024-11-05 15:21:43 +00:00
97f2a2213e
* Move some code outside dbms/src folder * Fix paths
10 lines
198 B
SQL
10 lines
198 B
SQL
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;
|