Skip to content

Commit 9d2043f

Browse files
authored
Update tests/integration/test_replicated_database/test.py
1 parent 097f69f commit 9d2043f

File tree

1 file changed

+1
-1
lines changed
  • tests/integration/test_replicated_database

1 file changed

+1
-1
lines changed

tests/integration/test_replicated_database/test.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1940,7 +1940,7 @@ def test_mv_false_cyclic_dependency(started_cluster):
19401940
f"""
19411941
CREATE DATABASE {db_name} ENGINE = Replicated('/clickhouse/databases/{db_name}', '{{shard}}', '{{replica}}');
19421942
CREATE TABLE {db_name}.table_1 (id Int32) ENGINE = MergeTree ORDER BY id;
1943-
CREATE MATERIALIZED VIEW {db_name}.table_2 (id Int32) ENGINE = MergeTree ORDER BY id AS WITH table_3 AS (SELECT id AS id FROM {db_name}.table_1) SELECT * FROM {db_name}.table_3;
1943+
CREATE MATERIALIZED VIEW {db_name}.table_2 (id Int32) ENGINE = MergeTree ORDER BY id AS WITH table_3 AS (SELECT id AS id FROM {db_name}.table_1) SELECT * FROM table_3;
19441944
CREATE MATERIALIZED VIEW {db_name}.table_3 (id Int32) ENGINE = MergeTree ORDER BY id AS SELECT id AS id FROM {db_name}.table_2;
19451945
"""
19461946
)

0 commit comments

Comments
 (0)