This is an automated email from the ASF dual-hosted git repository.
morningman 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 520a8f48386 [fix](test) fix test_autoinc_broker_load.groovy (#46320)
520a8f48386 is described below
commit 520a8f48386e6489f31e4b7091e36dbd93ff3243
Author: Mingyu Chen (Rayner) <[email protected]>
AuthorDate: Fri Jan 3 10:28:21 2025 +0800
[fix](test) fix test_autoinc_broker_load.groovy (#46320)
### What problem does this PR solve?
The result need to be ordered
---
.../suites/external_table_p0/hive/test_autoinc_broker_load.groovy | 2 +-
1 file changed, 1 insertion(+), 1 deletion(-)
diff --git
a/regression-test/suites/external_table_p0/hive/test_autoinc_broker_load.groovy
b/regression-test/suites/external_table_p0/hive/test_autoinc_broker_load.groovy
index 376da31c8a7..cefbd4e6994 100644
---
a/regression-test/suites/external_table_p0/hive/test_autoinc_broker_load.groovy
+++
b/regression-test/suites/external_table_p0/hive/test_autoinc_broker_load.groovy
@@ -80,7 +80,7 @@ suite("test_autoinc_broker_load",
"p0,external,hive,external_docker,external_doc
def test_load_label = UUID.randomUUID().toString().replaceAll("-", "")
load_from_hdfs("name, value", table, test_load_label,
"auto_inc_basic.csv", "csv")
wait_for_load_result(test_load_label, table)
- qt_sql "select * from ${table};"
+ qt_sql "select * from ${table} order by id;"
sql """ insert into ${table} values(0, "Bob", 123), (2, "Tom", 323),
(4, "Carter", 523);"""
qt_sql "select * from ${table} order by id"
sql "drop table if exists ${table};"
---------------------------------------------------------------------
To unsubscribe, e-mail: [email protected]
For additional commands, e-mail: [email protected]