This commit is contained in:
Kruglov Pavel 2022-03-29 14:07:19 +02:00 committed by GitHub
parent c066593595
commit a2aab8ffac
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23

View File

@ -15,7 +15,7 @@ def start_cluster():
def test_materialized_view_with_subquery(start_cluster):
node.query("create table test (x UInt32) engine=TineLog()")
node.query("create table test (x UInt32) engine=TinyLog()")
node.query(
"create materialized view mv engine = TinyLog() as with subquery as (select * from test) select * from subquery"
)