Disable grace_hash join in stress tests

Until https://github.com/ClickHouse/ClickHouse/issues/50220 is fixed
This commit is contained in:
vdimir 2023-06-08 07:15:11 +00:00
parent 3460667cac
commit 2297995c1a
No known key found for this signature in database
GPG Key ID: 6EE4CE2BEDC51862

View File

@ -37,9 +37,6 @@ def get_options(i, upgrade_check):
client_options.append("join_algorithm='partial_merge'")
if join_alg_num % 5 == 2:
client_options.append("join_algorithm='full_sorting_merge'")
if join_alg_num % 5 == 3 and not upgrade_check:
# Some crashes are not fixed in 23.2 yet, so ignore the setting in Upgrade check
client_options.append("join_algorithm='grace_hash'")
if join_alg_num % 5 == 4:
client_options.append("join_algorithm='auto'")
client_options.append("max_rows_in_join=1000")