mirror of
https://github.com/ClickHouse/ClickHouse.git
synced 2024-11-26 17:41:59 +00:00
Fix python format
This commit is contained in:
parent
0a3d986e42
commit
8a40a48a49
@ -16,6 +16,7 @@ node = cluster.add_instance(
|
|||||||
],
|
],
|
||||||
)
|
)
|
||||||
|
|
||||||
|
|
||||||
@pytest.fixture(scope="module", autouse=True)
|
@pytest.fixture(scope="module", autouse=True)
|
||||||
def start_cluster():
|
def start_cluster():
|
||||||
try:
|
try:
|
||||||
@ -24,6 +25,7 @@ def start_cluster():
|
|||||||
finally:
|
finally:
|
||||||
cluster.shutdown()
|
cluster.shutdown()
|
||||||
|
|
||||||
|
|
||||||
def test_projection_broken_part():
|
def test_projection_broken_part():
|
||||||
node.query(
|
node.query(
|
||||||
"""
|
"""
|
||||||
@ -57,4 +59,7 @@ def test_projection_broken_part():
|
|||||||
|
|
||||||
time.sleep(2)
|
time.sleep(2)
|
||||||
|
|
||||||
assert int(node.query("select sum(b) from test_projection_broken_parts_1 group by a")) == 6
|
assert (
|
||||||
|
int(node.query("select sum(b) from test_projection_broken_parts_1 group by a"))
|
||||||
|
== 6
|
||||||
|
)
|
||||||
|
Loading…
Reference in New Issue
Block a user