fix system views test

This commit is contained in:
zhongyuankai 2021-08-27 12:27:33 +08:00
parent b57dff7157
commit 3c19cd729f
3 changed files with 8 additions and 8 deletions

View File

@ -1,8 +0,0 @@
DROP TABLE IF EXISTS views_test;
CREATE TABLE views_test (a UInt8, s String) ENGINE = MergeTree() ORDER BY a;
DROP TABLE IF EXISTS views_test_view;
CREATE MATERIALIZED VIEW views_test_view ENGINE = ReplacingMergeTree() ORDER BY a AS SELECT * FROM views_test;
SELECT * FROM system.views WHERE database = 'default' and name = 'views_test_view';
DROP TABLE IF EXISTS views_test_view;
SELECT * FROM system.views WHERE database = 'default' and name = 'views_test_view';
DROP TABLE IF EXISTS views_test;

View File

@ -0,0 +1,8 @@
DROP TABLE IF EXISTS default.views_test;
CREATE TABLE default.views_test (a UInt8, s String) ENGINE = MergeTree() ORDER BY a;
DROP TABLE IF EXISTS default.views_test_view;
CREATE MATERIALIZED VIEW default.views_test_view ENGINE = ReplacingMergeTree() ORDER BY a AS SELECT * FROM default.views_test;
SELECT * FROM system.views WHERE database = 'default' and name = 'views_test_view';
DROP TABLE IF EXISTS default.views_test_view;
SELECT * FROM system.views WHERE database = 'default' and name = 'views_test_view';
DROP TABLE IF EXISTS default.views_test;