Merge pull request #72075 from ClickHouse/kssenii-patch-13

Fix  test_disk_over_web_server/
This commit is contained in:
Kseniia Sumarokova 2024-11-19 15:46:01 +00:00 committed by GitHub
commit 0ff7c280f9
No known key found for this signature in database
GPG Key ID: B5690EEEBB952194

View File

@ -112,11 +112,12 @@ def test_usage(cluster, node_name):
for i in range(3):
node2.query(
"""
DROP TABLE IF EXISTS test{};
CREATE TABLE test{} UUID '{}'
(id Int32) ENGINE = MergeTree() ORDER BY id
SETTINGS storage_policy = 'web';
""".format(
i, uuids[i]
i, i, uuids[i]
)
)