Fixed test

This commit is contained in:
Vasily Nemkov 2021-12-14 14:57:13 +03:00 committed by GitHub
parent 0f19807b97
commit 4223553508
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23

View File

@ -1,5 +1,5 @@
# Make sure that any kind of `VIEW` can be created with a `COMMENT` clause
# and value of that clause is visible as `comment` column of `system.tables` table.
-- Make sure that any kind of `VIEW` can be created with a `COMMENT` clause
-- and value of that clause is visible as `comment` column of `system.tables` table.
CREATE VIEW view_comment_test AS (SELECT 1) COMMENT 'simple view';
CREATE MATERIALIZED VIEW materialized_view_comment_test TO test1 (a UInt64) AS (SELECT 1) COMMENT 'materialized view';
@ -7,4 +7,6 @@ CREATE MATERIALIZED VIEW materialized_view_comment_test TO test1 (a UInt64) AS (
SET allow_experimental_live_view=1;
CREATE LIVE VIEW live_view_comment_test AS (SELECT 1) COMMENT 'live view';
SELECT name, engine, comment FROM system.tables WHERE name LIKE '%view_comment_test' ORDER BY name;
SYSTEM FLUSH LOGS;
SELECT name, engine, comment FROM system.tables WHERE database == currentDatabase() ORDER BY name;