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

starocean999 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 88e3bad1249 [fix](test)fix regression test case failure (#37797)
88e3bad1249 is described below

commit 88e3bad12492110c9a49497c25f8b4a3d115fbfb
Author: starocean999 <40539150+starocean...@users.noreply.github.com>
AuthorDate: Tue Jul 16 11:03:33 2024 +0800

    [fix](test)fix regression test case failure (#37797)
---
 regression-test/suites/nereids_p0/aggregate/agg_nullable.groovy   | 6 +++---
 regression-test/suites/nereids_p0/aggregate/agg_nullable_2.groovy | 6 +++---
 2 files changed, 6 insertions(+), 6 deletions(-)

diff --git a/regression-test/suites/nereids_p0/aggregate/agg_nullable.groovy 
b/regression-test/suites/nereids_p0/aggregate/agg_nullable.groovy
index 2b0b51cd64f..417cd7aa99d 100644
--- a/regression-test/suites/nereids_p0/aggregate/agg_nullable.groovy
+++ b/regression-test/suites/nereids_p0/aggregate/agg_nullable.groovy
@@ -863,19 +863,19 @@ suite("agg_nullable") {
     qt_select_topn_weighted """select topn_weighted(kvchrs1, ktint, 3) from 
agg_nullable_test;"""
     explain {
         sql("verbose select topn_weighted(kvchrs1, ktint, 3) from 
agg_nullable_test;")
-        contains "colUniqueId=null, type=ARRAY<CHARACTER>, nullable=true"
+        contains ">, nullable=true"
     }
 
     qt_select_topn_weighted2 """select topn_weighted(kvchrs1, ktint, 3) from 
agg_nullable_test group by id;"""
     explain {
         sql("verbose select topn_weighted(kvchrs1, ktint, 3) from 
agg_nullable_test group by id;")
-        contains "colUniqueId=null, type=ARRAY<CHARACTER>, nullable=false"
+        contains ">, nullable=false"
     }
 
     qt_select_topn_weighted_n """select topn_weighted(knvchrs1, kntint, 3) 
from agg_nullable_test;"""
     explain {
         sql("verbose select topn_weighted(knvchrs1, kntint, 3) from 
agg_nullable_test;")
-        contains "colUniqueId=null, type=ARRAY<CHARACTER>, nullable=true"
+        contains ">, nullable=true"
     }
 
     qt_select_variance """select variance(kint) from agg_nullable_test;"""
diff --git a/regression-test/suites/nereids_p0/aggregate/agg_nullable_2.groovy 
b/regression-test/suites/nereids_p0/aggregate/agg_nullable_2.groovy
index 7bf859b5552..ba2ea9ea5f6 100644
--- a/regression-test/suites/nereids_p0/aggregate/agg_nullable_2.groovy
+++ b/regression-test/suites/nereids_p0/aggregate/agg_nullable_2.groovy
@@ -875,19 +875,19 @@ suite("agg_nullable_2") {
     qt_select_topn_weighted """select topn_weighted(kvchrs1, ktint, 3) from 
agg_nullable_test_2;"""
     explain {
         sql("verbose select topn_weighted(kvchrs1, ktint, 3) from 
agg_nullable_test_2;")
-        contains "colUniqueId=null, type=ARRAY<CHARACTER>, nullable=true"
+        contains ">, nullable=true"
     }
 
     qt_select_topn_weighted2 """select topn_weighted(kvchrs1, ktint, 3) from 
agg_nullable_test_2 group by id;"""
     explain {
         sql("verbose select topn_weighted(kvchrs1, ktint, 3) from 
agg_nullable_test_2 group by id;")
-        contains "colUniqueId=null, type=ARRAY<CHARACTER>, nullable=false"
+        contains ">, nullable=false"
     }
 
     qt_select_topn_weighted_n """select topn_weighted(knvchrs1, kntint, 3) 
from agg_nullable_test_2;"""
     explain {
         sql("verbose select topn_weighted(knvchrs1, kntint, 3) from 
agg_nullable_test_2;")
-        contains "colUniqueId=null, type=ARRAY<CHARACTER>, nullable=true"
+        contains ">, nullable=true"
     }
 
     qt_select_variance """select variance(kint) from agg_nullable_test_2;"""


---------------------------------------------------------------------
To unsubscribe, e-mail: commits-unsubscr...@doris.apache.org
For additional commands, e-mail: commits-h...@doris.apache.org

Reply via email to