mirror of
https://github.com/ClickHouse/ClickHouse.git
synced 2024-11-14 03:25:15 +00:00
21 lines
475 B
MySQL
21 lines
475 B
MySQL
|
SET allow_experimental_live_view = 1;
|
||
|
|
||
|
DROP TABLE IF EXISTS test.lv;
|
||
|
DROP TABLE IF EXISTS test.mt;
|
||
|
|
||
|
CREATE TABLE test.mt (a Int32) Engine=MergeTree order by tuple();
|
||
|
CREATE LIVE VIEW test.lv AS SELECT sum(a) FROM test.mt;
|
||
|
|
||
|
INSERT INTO test.mt VALUES (1),(2),(3);
|
||
|
|
||
|
SELECT *,_version FROM test.lv;
|
||
|
SELECT *,_version FROM test.lv;
|
||
|
|
||
|
INSERT INTO test.mt VALUES (1),(2),(3);
|
||
|
|
||
|
SELECT *,_version FROM test.lv;
|
||
|
SELECT *,_version FROM test.lv;
|
||
|
|
||
|
DROP TABLE test.lv;
|
||
|
DROP TABLE test.mt;
|