This is an automated email from the ASF dual-hosted git repository. yiguolei pushed a commit to branch branch-2.1 in repository https://gitbox.apache.org/repos/asf/doris.git
commit 012aec027d5dd8f46d63bab5909d4e7fb5b2a7be Author: Mryange <[email protected]> AuthorDate: Tue Apr 23 15:27:56 2024 +0800 [test](p0 case) Increase the batch size in test leading cases (#33994) Due to the presence of fuzziness, the batch size may be set to 50, and this case runs very slowly locally, making it prone to timeouts. --- regression-test/suites/nereids_p0/hint/test_leading.groovy | 2 ++ 1 file changed, 2 insertions(+) diff --git a/regression-test/suites/nereids_p0/hint/test_leading.groovy b/regression-test/suites/nereids_p0/hint/test_leading.groovy index 50771186c64..a9ad4aa705c 100644 --- a/regression-test/suites/nereids_p0/hint/test_leading.groovy +++ b/regression-test/suites/nereids_p0/hint/test_leading.groovy @@ -75,6 +75,8 @@ suite("test_leading") { time 10000 } + sql""" set BATCH_SIZE = 4064;""" + //// check table count qt_select1_1 """select count(*) from t1;""" qt_select1_2 """select count(*) from t2;""" --------------------------------------------------------------------- To unsubscribe, e-mail: [email protected] For additional commands, e-mail: [email protected]
