This is an automated email from the ASF dual-hosted git repository.

hellostephen 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 f2619bdba49 [fix](test) fix case test_array_agg_view use same table in 
a database (#59027)
f2619bdba49 is described below

commit f2619bdba49c75d9218b78da76b2f568a7f1a8d9
Author: feiniaofeiafei <[email protected]>
AuthorDate: Tue Dec 16 14:50:11 2025 +0800

    [fix](test) fix case test_array_agg_view use same table in a database 
(#59027)
    
    
    Related PR: #58031
---
 .../nereids_p0/variables_persist/test_array_agg_view.groovy       | 8 ++++----
 1 file changed, 4 insertions(+), 4 deletions(-)

diff --git 
a/regression-test/suites/nereids_p0/variables_persist/test_array_agg_view.groovy
 
b/regression-test/suites/nereids_p0/variables_persist/test_array_agg_view.groovy
index f9714e1d4bd..25edb28277d 100644
--- 
a/regression-test/suites/nereids_p0/variables_persist/test_array_agg_view.groovy
+++ 
b/regression-test/suites/nereids_p0/variables_persist/test_array_agg_view.groovy
@@ -56,11 +56,11 @@ suite("test_array_agg_view") {
     qt_avg2 "select * from v_test_array_avg order by 1,2,3,4,5,6, 7;"
 
     multi_sql """set enable_decimal256=true;
-    drop view if EXISTS v_test_array_product;
-    create view v_test_array_product as select kint, array_product(a_int), 
array_product(a_float), array_product(a_double), array_product(a_dec_v3_64), 
array_product(a_dec_v3_128), array_product(a_dec_v3_256) from 
test_array_agg_view;"""
-    qt_product1 "select * from v_test_array_product order by 1,2,3,4,5,6, 7;"
+    drop view if EXISTS v_test_array_product2;
+    create view v_test_array_product2 as select kint, array_product(a_int), 
array_product(a_float), array_product(a_double), array_product(a_dec_v3_64), 
array_product(a_dec_v3_128), array_product(a_dec_v3_256) from 
test_array_agg_view;"""
+    qt_product1 "select * from v_test_array_product2 order by 1,2,3,4,5,6, 7;"
     sql "set enable_decimal256=false;"
-    qt_product2 "select * from v_test_array_product order by 1,2,3,4,5,6, 7;"
+    qt_product2 "select * from v_test_array_product2 order by 1,2,3,4,5,6, 7;"
 
     sql """set enable_decimal256=true; """
     qt_cum_sum1 "select *, array_cum_sum(a_int), array_cum_sum(a_float), 
array_cum_sum(a_double), array_cum_sum(a_dec_v3_64), 
array_cum_sum(a_dec_v3_128), array_cum_sum(a_dec_v3_256) from 
test_array_agg_view order by 1,2,3,4,5,6, 7;"


---------------------------------------------------------------------
To unsubscribe, e-mail: [email protected]
For additional commands, e-mail: [email protected]

Reply via email to