ClickHouse/dbms/tests/queries/0_stateless/00961_temporary_live_view_watch.sql
Vitaliy Zakaznikov 103bf9d068 * Updating tests as SHOW TABLES 'lv' does not return any tables
as test database is not selected by default.
2019-06-15 23:34:28 -04:00

19 lines
388 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 TEMPORARY LIVE VIEW test.lv AS SELECT sum(a) FROM test.mt;
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;