Added tests for CREATE [MATERIALIZED|LIVE] VIEW ... COMMENT ''

This commit is contained in:
Vasily Nemkov 2021-11-03 22:52:32 +02:00
parent 67852e9134
commit 6532ede2f6
2 changed files with 13 additions and 0 deletions

View File

@ -0,0 +1,3 @@
live_view_comment_test LiveView live view
materialized_view_comment_test MaterializedView materialized view
view_comment_test View simple view

View File

@ -0,0 +1,10 @@
# 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';
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;