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
10 lines
213 B
SQL
10 lines
213 B
SQL
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;
|
|
|
|
SHOW TABLES LIKE 'lv';
|
|
|
|
DROP TABLE test.lv;
|
|
DROP TABLE test.mt;
|