mirror of
https://github.com/ClickHouse/ClickHouse.git
synced 2024-11-18 21:51:57 +00:00
9 lines
241 B
MySQL
9 lines
241 B
MySQL
|
SET allow_experimental_live_view = 1;
|
||
|
DROP TABLE IF EXISTS test;
|
||
|
DROP TABLE IF EXISTS lv;
|
||
|
CREATE TABLE test (n Int8) ENGINE = Memory;
|
||
|
CREATE LIVE VIEW lv AS SELECT * FROM test;
|
||
|
DETACH TABLE lv;
|
||
|
INSERT INTO test VALUES (42);
|
||
|
DROP TABLE test;
|