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

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


The following commit(s) were added to refs/heads/branch-2.0 by this push:
     new a7b8c09afbc [fix](case) add order by in test_javaudaf_return_map 
(#22824) (#25959)
a7b8c09afbc is described below

commit a7b8c09afbc9bd5b58d8b8d5c3e2e038c7040c5a
Author: Mryange <[email protected]>
AuthorDate: Fri Oct 27 23:16:00 2023 +0800

    [fix](case) add order by in test_javaudaf_return_map (#22824) (#25959)
---
 regression-test/suites/javaudf_p0/test_javaudaf_return_map.groovy | 6 +++---
 1 file changed, 3 insertions(+), 3 deletions(-)

diff --git a/regression-test/suites/javaudf_p0/test_javaudaf_return_map.groovy 
b/regression-test/suites/javaudf_p0/test_javaudaf_return_map.groovy
index 85b6d042a03..6485be198bd 100644
--- a/regression-test/suites/javaudf_p0/test_javaudaf_return_map.groovy
+++ b/regression-test/suites/javaudf_p0/test_javaudaf_return_map.groovy
@@ -88,13 +88,13 @@ suite("test_javaudaf_return_map") {
 
         qt_select_2 """ select aggmap2(id,d) from aggdb; """
 
-        qt_select_3 """ select aggmap(id) from aggdb group by id; """
+        qt_select_3 """ select aggmap(id) from aggdb group by id order by id; 
"""
 
-        qt_select_4 """ select aggmap2(id,d) from aggdb group by id; """
+        qt_select_4 """ select aggmap2(id,d) from aggdb group by id order by 
id; """
 
         qt_select_5 """ select aggmap3(id,d) from aggdb; """
 
-        qt_select_6 """ select aggmap3(id,d) from aggdb group by id; """
+        qt_select_6 """ select aggmap3(id,d) from aggdb group by id order by 
id; """
     } finally {
         try_sql("DROP FUNCTION IF EXISTS aggmap(int);")
         try_sql("DROP FUNCTION IF EXISTS aggmap2(int,double);")


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

Reply via email to