mirror of
https://github.com/ClickHouse/ClickHouse.git
synced 2024-11-21 23:21:59 +00:00
Fix test
This commit is contained in:
parent
e6bd496269
commit
cef057f150
@ -9,8 +9,8 @@ SELECT name, value from system.settings WHERE name = 'live_view_heartbeat_interv
|
||||
CREATE TABLE mt (a Int32) Engine=MergeTree order by tuple();
|
||||
CREATE LIVE VIEW lv WITH TIMEOUT 1 AS SELECT sum(a) FROM mt;
|
||||
|
||||
SHOW TABLES FROM currentDatabase() LIKE 'lv';
|
||||
SHOW TABLES WHERE database=currentDatabase() and name LIKE 'lv';
|
||||
SELECT sleep(2);
|
||||
SHOW TABLES FROM currentDatabase() LIKE 'lv';
|
||||
SHOW TABLES WHERE database=currentDatabase() and name LIKE 'lv';
|
||||
|
||||
DROP TABLE mt;
|
||||
|
Loading…
Reference in New Issue
Block a user