This is an automated email from the ASF dual-hosted git repository.
englefly 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 8df487eecdd [fix](test) fix regression test test_view_var_persist
table name reuse (#59870)
8df487eecdd is described below
commit 8df487eecdd8b69975ab58abc0b50343f99c3108
Author: feiniaofeiafei <[email protected]>
AuthorDate: Mon Jan 19 11:38:23 2026 +0800
[fix](test) fix regression test test_view_var_persist table name reuse
(#59870)
### What problem does this PR solve?
---
.../nereids_p0/variables_persist/test_view_var_persist.groovy | 6 +++---
1 file changed, 3 insertions(+), 3 deletions(-)
diff --git
a/regression-test/suites/nereids_p0/variables_persist/test_view_var_persist.groovy
b/regression-test/suites/nereids_p0/variables_persist/test_view_var_persist.groovy
index 5834495511e..0a07b6a94cf 100644
---
a/regression-test/suites/nereids_p0/variables_persist/test_view_var_persist.groovy
+++
b/regression-test/suites/nereids_p0/variables_persist/test_view_var_persist.groovy
@@ -207,11 +207,11 @@ suite("test_view_var_persist") {
qt_array_funcs "select * from v_test_array_func;"
multi_sql """set enable_decimal256=true;
- drop view if EXISTS v_test_array_product2;
- create view v_test_array_product2 as
+ drop view if EXISTS v_persist_test_array_product;
+ create view v_persist_test_array_product as
select array_product(array(f1,f2)) from test_decimal_mul_overflow1;
set enable_decimal256=false;"""
- qt_array_product "select * from v_test_array_product2;"
+ qt_array_product "select * from v_persist_test_array_product;"
// compare expr
multi_sql """
---------------------------------------------------------------------
To unsubscribe, e-mail: [email protected]
For additional commands, e-mail: [email protected]