From 041a9c81808d40b0b5080dc9973dff3582ac1176 Mon Sep 17 00:00:00 2001 From: robot-clickhouse Date: Sat, 7 Oct 2023 17:27:42 +0000 Subject: [PATCH] Automatic style fix --- .../test_replicated_s3_zero_copy_drop_partition/test.py | 9 ++++++--- 1 file changed, 6 insertions(+), 3 deletions(-) diff --git a/tests/integration/test_replicated_s3_zero_copy_drop_partition/test.py b/tests/integration/test_replicated_s3_zero_copy_drop_partition/test.py index f590b5d8745..3b3e5fd62c3 100644 --- a/tests/integration/test_replicated_s3_zero_copy_drop_partition/test.py +++ b/tests/integration/test_replicated_s3_zero_copy_drop_partition/test.py @@ -1,4 +1,3 @@ - #!/usr/bin/env python3 import logging @@ -55,9 +54,13 @@ CREATE TABLE test_s3(c1 Int8, c2 Date) ENGINE = ReplicatedMergeTree('/test/table assert node1.query("SELECT count() FROM test_local") == "2\n" objects_before = get_objects_in_data_path() - node1.query("ALTER TABLE test_s3 FETCH PARTITION '2023-10-04' FROM '/test/tables/shard/test_local'") + node1.query( + "ALTER TABLE test_s3 FETCH PARTITION '2023-10-04' FROM '/test/tables/shard/test_local'" + ) - node1.query("ALTER TABLE test_s3 DROP DETACHED PARTITION '2023-10-04' SETTINGS allow_drop_detached = 1") + node1.query( + "ALTER TABLE test_s3 DROP DETACHED PARTITION '2023-10-04' SETTINGS allow_drop_detached = 1" + ) objects_after = get_objects_in_data_path()