This is an automated email from the ASF dual-hosted git repository.
morrySnow pushed a commit to branch master
in repository https://gitbox.apache.org/repos/asf/doris.git
The following commit(s) were added to refs/heads/master by this push:
new f6491435313 [fix](test) fix flaky regression test agg_strategy (#64379)
f6491435313 is described below
commit f64914353138143cc30264df781f280cc0a004e1
Author: feiniaofeiafei <[email protected]>
AuthorDate: Thu Jun 11 14:25:01 2026 +0800
[fix](test) fix flaky regression test agg_strategy (#64379)
---
.../suites/nereids_rules_p0/agg_strategy/agg_strategy.groovy | 11 +++++++----
1 file changed, 7 insertions(+), 4 deletions(-)
diff --git
a/regression-test/suites/nereids_rules_p0/agg_strategy/agg_strategy.groovy
b/regression-test/suites/nereids_rules_p0/agg_strategy/agg_strategy.groovy
index 996fcac11fd..50f4efb1b2f 100644
--- a/regression-test/suites/nereids_rules_p0/agg_strategy/agg_strategy.groovy
+++ b/regression-test/suites/nereids_rules_p0/agg_strategy/agg_strategy.groovy
@@ -22,11 +22,13 @@ suite("agg_strategy") {
sql "set runtime_filter_mode=OFF"
sql "set be_number_for_test=1;"
sql "set enable_bucketed_hash_agg = false;"
+ sql "set parallel_pipeline_task_num=2"
for (int i = 0; i < 2; i++) {
if (i == 0) {
- // not have statistic
- sql """drop stats t_gbykey_10_dstkey_10_1000_id"""
+ // not have column statistics
+ sql """analyze table t_gbykey_10_dstkey_10_1000_id with sync;"""
+ sql """drop stats
t_gbykey_10_dstkey_10_1000_id(id,gby_key,dst_key1,dst_key2)"""
} else {
// have statistic
sql """analyze table t_gbykey_10_dstkey_10_1000_id with sync;"""
@@ -67,8 +69,9 @@ suite("agg_strategy") {
for (int i = 0; i < 2; i++) {
if (i == 0) {
- // not have statistic
- sql """drop stats t_gbykey_2_dstkey_10_30_id"""
+ // not have column statistics
+ sql """analyze table t_gbykey_2_dstkey_10_30_id with sync;"""
+ sql """drop stats
t_gbykey_2_dstkey_10_30_id(id,gby_key,dst_key1,dst_key2)"""
} else {
// have statistic
sql """analyze table t_gbykey_2_dstkey_10_30_id with sync;"""
---------------------------------------------------------------------
To unsubscribe, e-mail: [email protected]
For additional commands, e-mail: [email protected]