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 fc13a4bff9f [fix](regression-test) fix unstable case 
`test_hdfs_orc_group0_orc_files` (#42188)
fc13a4bff9f is described below

commit fc13a4bff9fe0b024e3d4f68f104132860ac55fb
Author: Tiewei Fang <[email protected]>
AuthorDate: Mon Oct 21 22:52:18 2024 +0800

    [fix](regression-test) fix unstable case `test_hdfs_orc_group0_orc_files` 
(#42188)
    
    We should add `order by col1` becuase there are multiple repeated col0 rows.
---
 .../tvf/orc_tvf/test_hdfs_orc_group0_orc_files.out | Bin 101848 -> 101642 bytes
 .../orc_tvf/test_hdfs_orc_group0_orc_files.groovy  |   2 +-
 2 files changed, 1 insertion(+), 1 deletion(-)

diff --git 
a/regression-test/data/external_table_p0/tvf/orc_tvf/test_hdfs_orc_group0_orc_files.out
 
b/regression-test/data/external_table_p0/tvf/orc_tvf/test_hdfs_orc_group0_orc_files.out
index 875738ba98c..01158a2fb60 100644
Binary files 
a/regression-test/data/external_table_p0/tvf/orc_tvf/test_hdfs_orc_group0_orc_files.out
 and 
b/regression-test/data/external_table_p0/tvf/orc_tvf/test_hdfs_orc_group0_orc_files.out
 differ
diff --git 
a/regression-test/suites/external_table_p0/tvf/orc_tvf/test_hdfs_orc_group0_orc_files.groovy
 
b/regression-test/suites/external_table_p0/tvf/orc_tvf/test_hdfs_orc_group0_orc_files.groovy
index 26736b672b2..924ceca4204 100644
--- 
a/regression-test/suites/external_table_p0/tvf/orc_tvf/test_hdfs_orc_group0_orc_files.groovy
+++ 
b/regression-test/suites/external_table_p0/tvf/orc_tvf/test_hdfs_orc_group0_orc_files.groovy
@@ -249,7 +249,7 @@ 
suite("test_hdfs_orc_group0_orc_files","external,hive,tvf,external_docker") {
             order_qt_test_38 """ select * from HDFS(
                         "uri" = "${uri}",
                         "hadoop.username" = "${hdfsUserName}",
-                        "format" = "orc") order by _col0 DESC limit 100; """
+                        "format" = "orc") order by _col0 DESC, _col1  DESC 
limit 98; """
 
             uri = "${defaultFS}" + 
"/user/doris/tvf_data/test_hdfs_orc/group0/orc-file-no-timezone.orc"
             order_qt_test_41 """ select * from HDFS(


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

Reply via email to