From 18f6158c308cfd5c78e5142bf289a00a0fe97690 Mon Sep 17 00:00:00 2001 From: Yahor Yuzefovich Date: Mon, 3 Nov 2025 23:08:47 +0000 Subject: [PATCH] logictest: add retry directive to one query that relies on stats We've seen a couple of failures where we didn't parallelize lookup joins when we expected to. This flake should've been fixed in 41d129af4db8d20391858219e466b8106cfa2b7f yet it still failed twice after that. I don't have any explanation for the flake, so let's just add a retry directive in one spot. Release note: None --- .../logictestccl/testdata/logic_test/regional_by_row_cascade | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/pkg/ccl/logictestccl/testdata/logic_test/regional_by_row_cascade b/pkg/ccl/logictestccl/testdata/logic_test/regional_by_row_cascade index 6d1ee00498e9..d8ae9d17a3f8 100644 --- a/pkg/ccl/logictestccl/testdata/logic_test/regional_by_row_cascade +++ b/pkg/ccl/logictestccl/testdata/logic_test/regional_by_row_cascade @@ -64,7 +64,7 @@ SELECT crdb_internal.clear_table_stats_cache(); # Only the scan in the main query is parallelized when we don't have stats on # the descendant tables. -query I +query I retry SELECT count(*) FROM [EXPLAIN (VERBOSE) DELETE FROM great_grandparent WHERE i = 1] WHERE info LIKE '%parallel%'; ---- 1