提交 966f46cf 编写于 作者: A Alexey Milovidov

Added a test from andrea-s

上级 55a72a54
my_table
.inner.my_materialized_view
my_materialized_view
my_table
DROP DATABASE IF EXISTS some_tests;
CREATE DATABASE some_tests;
create table some_tests.my_table ENGINE = MergeTree(day, (day), 8192) as select today() as day, 'mystring' as str;
show tables from some_tests;
create materialized view some_tests.my_materialized_view ENGINE = MergeTree(day, (day), 8192) as select * from some_tests.my_table;
show tables from some_tests;
select * from some_tests.my_materialized_view;
DROP DATABASE some_tests;
Markdown is supported
0% .
You are about to add 0 people to the discussion. Proceed with caution.
先完成此消息的编辑!
想要评论请 注册