Merge pull request #57150 from azat/ci/no-partial-results

Remove partial results from build matrix for stress tests
This commit is contained in:
Alexey Milovidov 2023-11-25 22:55:14 +01:00 committed by GitHub
commit d7e64fa446
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23

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")