mirror of
https://github.com/ClickHouse/ClickHouse.git
synced 2024-11-22 23:52:03 +00:00
Automatic style fix
This commit is contained in:
parent
9acd3707cb
commit
6ad8e789f6
@ -61,11 +61,15 @@ def test_merge_doesnt_work_without_zookeeper(start_cluster):
|
||||
|
||||
node1.query("TRUNCATE TABLE test_table")
|
||||
|
||||
total_parts = node1.query("SELECT count(*) from system.parts where table = 'test_table'")
|
||||
total_parts = node1.query(
|
||||
"SELECT count(*) from system.parts where table = 'test_table'"
|
||||
)
|
||||
assert total_parts == "0\n" or total_parts == "1\n"
|
||||
|
||||
assert (
|
||||
node1.query("SELECT count(*) from system.parts where table = 'test_table' and active = 1")
|
||||
node1.query(
|
||||
"SELECT count(*) from system.parts where table = 'test_table' and active = 1"
|
||||
)
|
||||
== "0\n"
|
||||
)
|
||||
|
||||
|
Loading…
Reference in New Issue
Block a user