Merge pull request #46683 from ClickHouse/tavplubix-patch-5

Fix Stress tests
This commit is contained in:
Alexander Tokmakov 2023-02-22 00:01:58 +03:00 committed by GitHub
commit 6439743de6
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23

View File

@ -46,7 +46,8 @@ def get_options(i, backward_compatibility_check):
if i % 2 == 1 and not backward_compatibility_check:
client_options.append("group_by_use_nulls=1")
if i == 12: # 12 % 3 == 0, so it's Atomic database
# 12 % 3 == 0, so it's Atomic database
if i == 12 and not backward_compatibility_check:
client_options.append("implicit_transaction=1")
client_options.append("throw_on_unsupported_query_inside_transaction=0")