From e24ee509a4f21afe55c7211ea5140d1da1051305 Mon Sep 17 00:00:00 2001 From: vdimir Date: Fri, 11 Jun 2021 13:08:49 +0300 Subject: [PATCH] Fix modulo division priority issue in test/stress/stress --- docker/test/stress/stress | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/docker/test/stress/stress b/docker/test/stress/stress index 88a1d0933a5..c98a527c1fe 100755 --- a/docker/test/stress/stress +++ b/docker/test/stress/stress @@ -37,10 +37,10 @@ def get_options(i): if i % 7 == 0: options.append(" --client-option='join_use_nulls=1'") - if i % 2 * 7 == 0: + if i % 14 == 0: options.append(' --client-option="join_algorithm=\'partial_merge\'"') - if i % 3 * 7 == 0: + if i % 21 == 0: options.append(' --client-option="join_algorithm=\'auto\'"') options.append(' --client-option="max_rows_in_join=1000"')