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

yiguolei pushed a commit to branch branch-2.1
in repository https://gitbox.apache.org/repos/asf/doris.git

commit e6027ca9d7d7ce5db1e8d08acbae779e68d9056b
Author: Tiewei Fang <[email protected]>
AuthorDate: Thu May 23 22:46:45 2024 +0800

    [fix](p2-test) fix test_export_with_parallelism case (#35283)
---
 .../suites/export_p2/test_export_with_parallelism.groovy          | 8 ++++----
 1 file changed, 4 insertions(+), 4 deletions(-)

diff --git 
a/regression-test/suites/export_p2/test_export_with_parallelism.groovy 
b/regression-test/suites/export_p2/test_export_with_parallelism.groovy
index 63e1f310ddc..c479f1fb011 100644
--- a/regression-test/suites/export_p2/test_export_with_parallelism.groovy
+++ b/regression-test/suites/export_p2/test_export_with_parallelism.groovy
@@ -88,7 +88,6 @@ suite("test_export_with_parallelism", "p2") {
     }
 
     def outFilePath = """${bucket}/export/exp_"""
-    // def outFilePath = """${bucket}/mac/test_job_scheduel/stu/exp_"""
 
     def test_export = {format, file_suffix, isDelete, parallelism ->
         def uuid = UUID.randomUUID().toString()
@@ -98,8 +97,8 @@ suite("test_export_with_parallelism", "p2") {
             PROPERTIES(
                 "label" = "${uuid}",
                 "format" = "${format}",
-                "column_separator" = ",",
                 "parallelism" = "${parallelism}",
+                "data_consistency" = "none",
                 "delete_existing_files"="${isDelete}"
             )
             WITH s3 (
@@ -129,11 +128,12 @@ suite("test_export_with_parallelism", "p2") {
             // check data correctness
             sql """ insert into ${table_load_name}
                         select * from s3(
-                        "uri" = 
"http://${s3_endpoint}${outfile_url_list.get(j).substring(4)}0.${file_suffix}",
+                        "uri" = 
"http://${s3_endpoint}${outfile_url_list.get(j).substring(4)}.${file_suffix}",
                         "s3.access_key"= "${ak}",
                         "s3.secret_key" = "${sk}",
                         "format" = "${format}",
-                        "region" = "${region}"
+                        "region" = "${region}",
+                        "use_path_style" = "true"
                 );
                 """
         }


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

Reply via email to