mirror of
https://github.com/ClickHouse/ClickHouse.git
synced 2024-11-19 14:11:58 +00:00
fc21200bdd
* Added uexpect.py module * Fixed support for CREATE TEMPORARY LIVE VIEW
21 lines
402 B
SQL
21 lines
402 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;
|
|
|
|
SHOW TABLES LIKE 'lv';
|
|
|
|
WATCH test.lv LIMIT 0;
|
|
|
|
INSERT INTO test.mt VALUES (1),(2),(3);
|
|
|
|
WATCH test.lv LIMIT 0;
|
|
|
|
INSERT INTO test.mt VALUES (4),(5),(6);
|
|
|
|
WATCH test.lv LIMIT 0;
|
|
|
|
DROP TABLE test.lv;
|
|
DROP TABLE test.mt;
|