This is an automated email from the ASF dual-hosted git repository.
yiguolei pushed a commit to branch branch-4.1
in repository https://gitbox.apache.org/repos/asf/doris.git
The following commit(s) were added to refs/heads/branch-4.1 by this push:
new 0f9bfb0fea4 [fix](test) fix regression test max_min_filter_push_down
#61437 (#61793)
0f9bfb0fea4 is described below
commit 0f9bfb0fea4f50f2f2d4b5117cfc01db4864103f
Author: Dongyang Li <[email protected]>
AuthorDate: Fri Mar 27 11:58:33 2026 +0800
[fix](test) fix regression test max_min_filter_push_down #61437 (#61793)
bp: #61437
### What problem does this PR solve?
Issue Number: close #xxx
Related PR: #xxx
Problem Summary:
### Release note
None
### Check List (For Author)
- Test <!-- At least one of them must be included. -->
- [ ] Regression test
- [ ] Unit Test
- [ ] Manual test (add detailed scripts or steps below)
- [ ] No need to test or manual test. Explain why:
- [ ] This is a refactor/code format and no logic has been changed.
- [ ] Previous test can cover this change.
- [ ] No code files have been changed.
- [ ] Other reason <!-- Add your reason? -->
- Behavior changed:
- [ ] No.
- [ ] Yes. <!-- Explain the behavior change -->
- Does this need documentation?
- [ ] No.
- [ ] Yes. <!-- Add document PR link here. eg:
https://github.com/apache/doris-website/pull/1214 -->
### Check List (For Reviewer who merge this PR)
- [ ] Confirm the release note
- [ ] Confirm test cases
- [ ] Confirm document
- [ ] Add branch pick label <!-- Add branch pick label that this PR
should merge into -->
---
.../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]