This is an automated email from the ASF dual-hosted git repository. panxiaolei 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 4a6f63e210 [fix](case) add order by in test_javaudaf_return_map (#22824) 4a6f63e210 is described below commit 4a6f63e2108c4ee2bf908d4ac1d3136f8dcf23e0 Author: Mryange <59914473+mrya...@users.noreply.github.com> AuthorDate: Thu Aug 10 18:24:41 2023 +0800 [fix](case) add order by in test_javaudaf_return_map (#22824) add order by in test_javaudaf_return_map --- 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 85b6d042a0..6485be198b 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: commits-unsubscr...@doris.apache.org For additional commands, e-mail: commits-h...@doris.apache.org