This is an automated email from the ASF dual-hosted git repository. hellostephen pushed a commit to branch hello-stephen-patch-18 in repository https://gitbox.apache.org/repos/asf/doris.git
commit 39841a8fc6d09c151e1149ae4ee998a05d2cb8e2 Author: Dongyang Li <[email protected]> AuthorDate: Fri Mar 27 10:23:46 2026 +0800 [fix](test) fix regression test max_min_filter_push_down #61437 bp: #61437 --- .../max_min_filter_push_down/max_min_filter_push_down.groovy | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/regression-test/suites/nereids_rules_p0/max_min_filter_push_down/max_min_filter_push_down.groovy b/regression-test/suites/nereids_rules_p0/max_min_filter_push_down/max_min_filter_push_down.groovy index 47610f2e125..9d5dbd3e7da 100644 --- a/regression-test/suites/nereids_rules_p0/max_min_filter_push_down/max_min_filter_push_down.groovy +++ b/regression-test/suites/nereids_rules_p0/max_min_filter_push_down/max_min_filter_push_down.groovy @@ -18,6 +18,7 @@ suite("max_min_filter_push_down") { sql "SET enable_nereids_planner=true" sql "SET enable_fallback_to_original_planner=false" sql "SET ignore_shape_nodes='PhysicalDistribute,PhysicalProject'" + sql "set disable_nereids_rules='REWRITE_SIMPLE_AGG_TO_CONSTANT'" sql "drop table if exists max_min_filter_push_down1" sql""" @@ -211,4 +212,4 @@ suite("max_min_filter_push_down") { qt_smallint_group_by_key_res """select max(d_smallint) from max_min_filter_push_down2 group by d_smallint having max(d_smallint)>10 order by 1;""" qt_tinyint_group_by_key_res """select min(d_tinyint) from max_min_filter_push_down2 group by d_tinyint having min(d_tinyint)<10 order by 1;""" qt_char100_group_by_key_res """select max(d_char100) from max_min_filter_push_down2 group by d_char100 having max(d_char100)>'ab' order by 1;""" -} \ No newline at end of file +} --------------------------------------------------------------------- To unsubscribe, e-mail: [email protected] For additional commands, e-mail: [email protected]
