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

yiguolei pushed a commit to branch branch-4.0
in repository https://gitbox.apache.org/repos/asf/doris.git


The following commit(s) were added to refs/heads/branch-4.0 by this push:
     new 4e06063e331 branch-4.0: [fix](test) fix case test_array_agg_view use 
same table in a database #59027 (#59076)
4e06063e331 is described below

commit 4e06063e33163073c364a2b6c0e0742267fd729a
Author: github-actions[bot] 
<41898282+github-actions[bot]@users.noreply.github.com>
AuthorDate: Fri Dec 19 14:17:06 2025 +0800

    branch-4.0: [fix](test) fix case test_array_agg_view use same table in a 
database #59027 (#59076)
    
    Cherry-picked from #59027
    
    Co-authored-by: feiniaofeiafei <[email protected]>
---
 .../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