2019-08-26 23:50:37 +00:00
|
|
|
SET allow_experimental_live_view = 1;
|
|
|
|
|
2019-08-25 01:38:50 +00:00
|
|
|
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;
|