ClickHouse/dbms/tests/queries/0_stateless/00959_create_temporary_live_view.sql
Vitaliy Zakaznikov fc21200bdd * Started to add LIVE VIEW table tests
* Added uexpect.py module
* Fixed support for CREATE TEMPORARY LIVE VIEW
2019-06-03 15:53:11 -04:00

15 lines
380 B
SQL

DROP TABLE IF EXISTS test.lv;
DROP TABLE IF EXISTS test.mt;
SELECT name, value from system.settings WHERE name = 'temporary_live_view_timeout';
CREATE TABLE test.mt (a Int32) Engine=MergeTree order by tuple();
CREATE TEMPORARY LIVE VIEW test.lv AS SELECT sum(a) FROM test.mt;
SHOW TABLES LIKE 'lv';
SELECT sleep(3);
SELECT sleep(2);
SHOW TABLES LIKE 'lv';
DROP TABLE test.mt;