We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent b00e64d commit 049857eCopy full SHA for 049857e
regression-test/framework/src/main/groovy/org/apache/doris/regression/suite/Suite.groovy
@@ -706,7 +706,7 @@ class Suite implements GroovyInterceptable {
706
Throwable throwable = null
707
for (int i = 1; i <= executeTimes; ++i) {
708
try {
709
- return closure()
+ return closure(i) as T
710
} catch (Throwable t) {
711
logger.warn("Retry failed: $t", t)
712
throwable = t
regression-test/suites/nereids_p0/cache/parse_sql_from_sql_cache.groovy
@@ -20,7 +20,7 @@ import java.util.stream.Collectors
20
suite("parse_sql_from_sql_cache") {
21
def assertHasCache = { String sqlStr ->
22
retry(120, 1000) { i ->
23
- if (i > 0) {
+ if (i > 1) {
24
sql sqlStr
25
}
26
explain {
0 commit comments