From c475f3c0bda0636d45c250f9866be0732a059fda Mon Sep 17 00:00:00 2001 From: Robert Schulze Date: Tue, 20 Feb 2024 10:05:54 +0000 Subject: [PATCH] Fix test_remote_blobs_naming --- .../test_backward_compatibility.py | 8 ++++---- 1 file changed, 4 insertions(+), 4 deletions(-) diff --git a/tests/integration/test_remote_blobs_naming/test_backward_compatibility.py b/tests/integration/test_remote_blobs_naming/test_backward_compatibility.py index 8c52b05dba2..8bdd82ce9bf 100644 --- a/tests/integration/test_remote_blobs_naming/test_backward_compatibility.py +++ b/tests/integration/test_remote_blobs_naming/test_backward_compatibility.py @@ -288,7 +288,7 @@ def test_replicated_merge_tree(cluster, test_case): WHERE local_path LIKE '%{uuid}%' AND local_path NOT LIKE '%format_version.txt%' - ORDER BY ALL + ORDER BY * """ ).strip() @@ -329,7 +329,7 @@ def test_replicated_merge_tree(cluster, test_case): WHERE table = 'test_replicated_merge_tree' AND active - ORDER BY ALL + ORDER BY * """ ) .strip() @@ -349,7 +349,7 @@ def test_replicated_merge_tree(cluster, test_case): SELECT name FROM system.zookeeper WHERE path='/clickhouse/zero_copy/zero_copy_s3/{table_shared_uuid}/{part}' - ORDER BY ALL + ORDER BY * """ ) .strip() @@ -363,7 +363,7 @@ def test_replicated_merge_tree(cluster, test_case): SELECT name FROM system.zookeeper WHERE path='/clickhouse/zero_copy/zero_copy_s3/{table_shared_uuid}/{part}/{blob}' - ORDER BY ALL + ORDER BY * """ ) .strip()