Fix test_remote_blobs_naming

This commit is contained in:
Robert Schulze 2024-02-20 10:05:54 +00:00
parent 6f6e74ad8b
commit c475f3c0bd
No known key found for this signature in database
GPG Key ID: 26703B55FB13728A

View File

@ -288,7 +288,7 @@ def test_replicated_merge_tree(cluster, test_case):
WHERE WHERE
local_path LIKE '%{uuid}%' local_path LIKE '%{uuid}%'
AND local_path NOT LIKE '%format_version.txt%' AND local_path NOT LIKE '%format_version.txt%'
ORDER BY ALL ORDER BY *
""" """
).strip() ).strip()
@ -329,7 +329,7 @@ def test_replicated_merge_tree(cluster, test_case):
WHERE WHERE
table = 'test_replicated_merge_tree' table = 'test_replicated_merge_tree'
AND active AND active
ORDER BY ALL ORDER BY *
""" """
) )
.strip() .strip()
@ -349,7 +349,7 @@ def test_replicated_merge_tree(cluster, test_case):
SELECT name SELECT name
FROM system.zookeeper FROM system.zookeeper
WHERE path='/clickhouse/zero_copy/zero_copy_s3/{table_shared_uuid}/{part}' WHERE path='/clickhouse/zero_copy/zero_copy_s3/{table_shared_uuid}/{part}'
ORDER BY ALL ORDER BY *
""" """
) )
.strip() .strip()
@ -363,7 +363,7 @@ def test_replicated_merge_tree(cluster, test_case):
SELECT name SELECT name
FROM system.zookeeper FROM system.zookeeper
WHERE path='/clickhouse/zero_copy/zero_copy_s3/{table_shared_uuid}/{part}/{blob}' WHERE path='/clickhouse/zero_copy/zero_copy_s3/{table_shared_uuid}/{part}/{blob}'
ORDER BY ALL ORDER BY *
""" """
) )
.strip() .strip()