mirror of
https://github.com/ClickHouse/ClickHouse.git
synced 2024-11-10 01:25:21 +00:00
Add partial_result_update_duration_ms to stress tests
This commit is contained in:
parent
01042f3aaa
commit
fff77876f9
@ -59,6 +59,12 @@ def get_options(i: int, upgrade_check: bool) -> str:
|
||||
client_options.append("implicit_transaction=1")
|
||||
client_options.append("throw_on_unsupported_query_inside_transaction=0")
|
||||
|
||||
if random.random() < 0.1:
|
||||
client_options.append("allow_experimental_partial_result=1")
|
||||
client_options.append(
|
||||
f"partial_result_update_duration_ms={random.randint(10, 1000)}"
|
||||
)
|
||||
|
||||
if client_options:
|
||||
options.append(" --client-option " + " ".join(client_options))
|
||||
|
||||
|
Loading…
Reference in New Issue
Block a user