Update test.py

This commit is contained in:
Kseniia Sumarokova 2024-11-19 11:23:46 +01:00 committed by GitHub
parent 0f4990d2e7
commit 6e1de8b8a4
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]
)
)