You are viewing a plain text version of this content. The canonical link for it is here.
Posted to commits@doris.apache.org by ga...@apache.org on 2024/01/15 09:15:45 UTC

(doris) branch master updated: [test](regression-test) fix case bug, add 'order by' to make it stable (#29981)

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

gabriellee 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 1f6fbeea51d [test](regression-test) fix case bug, add 'order by' to make it stable (#29981)
1f6fbeea51d is described below

commit 1f6fbeea51d3d3e4611346a748b25ac9bf85f2d3
Author: shuke <37...@users.noreply.github.com>
AuthorDate: Mon Jan 15 17:15:37 2024 +0800

    [test](regression-test) fix case bug, add 'order by' to make it stable (#29981)
---
 regression-test/suites/ddl_p0/test_alter_view.groovy | 4 ++--
 1 file changed, 2 insertions(+), 2 deletions(-)

diff --git a/regression-test/suites/ddl_p0/test_alter_view.groovy b/regression-test/suites/ddl_p0/test_alter_view.groovy
index c921a416284..936dba881b0 100644
--- a/regression-test/suites/ddl_p0/test_alter_view.groovy
+++ b/regression-test/suites/ddl_p0/test_alter_view.groovy
@@ -47,7 +47,7 @@ suite("test_alter_view") {
         (2, 10, 50)
         """
 
-    qt_select " SELECT * FROM ${viewName} "
+    qt_select " SELECT * FROM ${viewName} order by k1, k2 "
 
     sql """
         ALTER VIEW ${viewName} (k1, k2)
@@ -55,7 +55,7 @@ suite("test_alter_view") {
         SELECT c1 as k1, sum(c3) as k2 FROM ${tableName} GROUP BY c1
     """
 
-    qt_select " SELECT * FROM ${viewName} "
+    qt_select " SELECT * FROM ${viewName} order by k1, k2 "
 
     sql "DROP VIEW ${viewName}"
     sql "DROP TABLE ${tableName}"


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