This is an automated email from the ASF dual-hosted git repository.
yiguolei 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 ff09daaae3 [fix](test) add order by to test_alter_table_column (#17936)
ff09daaae3 is described below
commit ff09daaae31bb1d80a3253be54ac8119fb0f8bb8
Author: Yongqiang YANG <[email protected]>
AuthorDate: Mon Mar 20 09:07:43 2023 +0800
[fix](test) add order by to test_alter_table_column (#17936)
---
.../suites/schema_change_p0/test_alter_table_column.groovy | 6 +++---
1 file changed, 3 insertions(+), 3 deletions(-)
diff --git
a/regression-test/suites/schema_change_p0/test_alter_table_column.groovy
b/regression-test/suites/schema_change_p0/test_alter_table_column.groovy
index 0fcba89481..b7cab976fa 100644
--- a/regression-test/suites/schema_change_p0/test_alter_table_column.groovy
+++ b/regression-test/suites/schema_change_p0/test_alter_table_column.groovy
@@ -77,7 +77,7 @@ suite("test_alter_table_column") {
sql "insert into ${tbName1} values(1,1,10,20);"
sql "insert into ${tbName1} values(1,1,30,40);"
qt_sql "desc ${tbName1};"
- qt_sql "select * from ${tbName1};"
+ qt_sql "select * from ${tbName1} order by value1;"
sql "DROP TABLE ${tbName1} FORCE;"
def tbName2 = "alter_table_column_agg"
@@ -114,7 +114,7 @@ suite("test_alter_table_column") {
sql "insert into ${tbName2} values(1,1,10,20);"
sql "insert into ${tbName2} values(1,1,30,40);"
qt_sql "desc ${tbName2};"
- qt_sql "select * from ${tbName2};"
+ qt_sql "select * from ${tbName2} order by value2;"
sql "DROP TABLE ${tbName2} FORCE;"
def tbNameAddArray = "alter_table_add_array_column_dup"
@@ -155,7 +155,7 @@ suite("test_alter_table_column") {
Thread.sleep(200)
qt_sql "desc ${tbNameAddArray};"
- qt_sql "select * from ${tbNameAddArray};"
+ qt_sql "select * from ${tbNameAddArray} order by k1;"
sql "DROP TABLE ${tbNameAddArray} FORCE;"
// vector search
---------------------------------------------------------------------
To unsubscribe, e-mail: [email protected]
For additional commands, e-mail: [email protected]