ClickHouse/dbms/tests/queries/0_stateless/00980_create_temporary_live_view.sql

18 lines
542 B
MySQL
Raw Normal View History

SET allow_experimental_live_view = 1;
DROP TABLE IF EXISTS test.lv;
DROP TABLE IF EXISTS test.mt;
SELECT name, value from system.settings WHERE name = 'temporary_live_view_timeout';
SELECT name, value from system.settings WHERE name = 'live_view_heartbeat_interval';
SET temporary_live_view_timeout=1;
CREATE TABLE test.mt (a Int32) Engine=MergeTree order by tuple();
CREATE TEMPORARY LIVE VIEW test.lv AS SELECT sum(a) FROM test.mt;
2020-01-03 10:34:10 +00:00
SHOW TABLES FROM test LIKE 'lv';
SELECT sleep(2);
2020-01-03 10:34:10 +00:00
SHOW TABLES FROM test LIKE 'lv';
DROP TABLE test.mt;