ClickHouse/dbms/tests/queries/0_stateless/00952_live_view_create.sql

8 lines
189 B
MySQL
Raw Normal View History

DROP TABLE IF EXISTS test.mt;
CREATE TABLE test.mt (a Int32) Engine=MergeTree order by tuple();
CREATE LIVE VIEW test.lv AS SELECT * FROM test.mt;
DROP TABLE test.lv;
DROP TABLE test.mt;