Skip to content

Commit

Permalink
Fix test_026
Browse files Browse the repository at this point in the history
  • Loading branch information
alex-zaitsev committed Nov 25, 2023
1 parent 67e9c52 commit 64e64d5
Showing 1 changed file with 7 additions and 1 deletion.
8 changes: 7 additions & 1 deletion tests/e2e/test_operator.py
Original file line number Diff line number Diff line change
Expand Up @@ -2700,7 +2700,13 @@ def test_026(self):
with When("Create a table and generate several inserts"):
clickhouse.query(
chi,
sql="DROP TABLE IF EXISTS test_disks ON CLUSTER '{cluster}' SYNC; CREATE TABLE test_disks ON CLUSTER '{cluster}' (a Int64) Engine = ReplicatedMergeTree('/clickhouse/{installation}/tables/{shard}/{database}/{table}', '{replica}') PARTITION BY (a%10) ORDER BY a",
host="chi-test-026-mixed-replicas-default-0-0",
sql="CREATE TABLE test_disks (a Int64) Engine = ReplicatedMergeTree('/clickhouse/tables/{database}/{table}', '{replica}') PARTITION BY (a%10) ORDER BY a",
)
clickhouse.query(
chi,
host="chi-test-026-mixed-replicas-default-0-1",
sql="CREATE TABLE test_disks (a Int64) Engine = ReplicatedMergeTree('/clickhouse/tables/{database}/{table}', '{replica}') PARTITION BY (a%10) ORDER BY a",
)
clickhouse.query(
chi,
Expand Down

0 comments on commit 64e64d5

Please sign in to comment.