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 f04ceb7ccc4 branch-4.1: [fix](test) fix flaky case in
variables_persist test_mtmv #64365 (#64427)
f04ceb7ccc4 is described below
commit f04ceb7ccc44fd4e41caf4a87af89a4c606631b6
Author: github-actions[bot]
<41898282+github-actions[bot]@users.noreply.github.com>
AuthorDate: Tue Jun 16 14:53:30 2026 +0800
branch-4.1: [fix](test) fix flaky case in variables_persist test_mtmv
#64365 (#64427)
Cherry-picked from #64365
Co-authored-by: feiniaofeiafei <[email protected]>
---
regression-test/suites/nereids_p0/variables_persist/test_mtmv.groovy | 4 ++--
1 file changed, 2 insertions(+), 2 deletions(-)
diff --git
a/regression-test/suites/nereids_p0/variables_persist/test_mtmv.groovy
b/regression-test/suites/nereids_p0/variables_persist/test_mtmv.groovy
index 254ac07ba17..e59300ae5c8 100644
--- a/regression-test/suites/nereids_p0/variables_persist/test_mtmv.groovy
+++ b/regression-test/suites/nereids_p0/variables_persist/test_mtmv.groovy
@@ -141,14 +141,14 @@ suite("test_mtmv") {
sql """
select t1.f1*t1.f2, t1.f1, t1.f2 from
test_decimal_mul_overflow_for_mv t1 where t1.f1>1;
"""
- contains "where_mv chose"
+ contains "final projections: __multiply_0"
}
sql "set enable_decimal256=false;"
explain {
sql """
select t1.f1*t1.f2, t1.f1, t1.f2 from
test_decimal_mul_overflow_for_mv t1 where t1.f1>1;
"""
- contains "where_mv not chose"
+ notContains "final projections: __multiply_0"
}
sql "drop materialized view if exists where_mv;"
---------------------------------------------------------------------
To unsubscribe, e-mail: [email protected]
For additional commands, e-mail: [email protected]