Remove partial results from build matrix for stress tests

The feature had been reverted in #55893

Signed-off-by: Azat Khuzhin <a.khuzhin@semrush.com>
This commit is contained in:
Azat Khuzhin 2023-11-23 16:38:15 +01:00
parent ac1e742afa
commit d81fb9d117

View File

@ -59,12 +59,6 @@ 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 random.random() < 0.1:
client_options.append("optimize_trivial_approximate_count_query=1")