mirror of
https://github.com/ClickHouse/ClickHouse.git
synced 2024-11-13 11:04:10 +00:00
103bf9d068
as test database is not selected by default.
19 lines
436 B
SQL
19 lines
436 B
SQL
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;
|