Automatic style fix

This commit is contained in:
robot-clickhouse 2024-02-29 18:37:00 +00:00
parent 55053dae44
commit 41deadda35

View File

@ -59,7 +59,14 @@ def test_distributed_type_object(started_cluster):
)
expected = TSV("120\n")
assert TSV(node1.query("SELECT sum(data.k2 * id) FROM dist_table SETTINGS optimize_arithmetic_operations_in_aggregate_functions = 0")) == expected
assert (
TSV(
node1.query(
"SELECT sum(data.k2 * id) FROM dist_table SETTINGS optimize_arithmetic_operations_in_aggregate_functions = 0"
)
)
== expected
)
node1.query("TRUNCATE TABLE local_table")
node2.query("TRUNCATE TABLE local_table")