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

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


The following commit(s) were added to refs/heads/branch-4.1 by this push:
     new ff7550ae547 branch-4.1: [fix](regression) Isolate S3 TVF insert paths 
#65147 (#65163)
ff7550ae547 is described below

commit ff7550ae5478fbb2081c73e3c2a31c4c2d64990d
Author: github-actions[bot] 
<41898282+github-actions[bot]@users.noreply.github.com>
AuthorDate: Fri Jul 3 15:44:05 2026 +0800

    branch-4.1: [fix](regression) Isolate S3 TVF insert paths #65147 (#65163)
    
    Cherry-picked from #65147
    
    Co-authored-by: Gabriel <[email protected]>
---
 .../external_table_p0/tvf/insert/test_insert_into_s3_tvf.groovy      | 5 +++--
 1 file changed, 3 insertions(+), 2 deletions(-)

diff --git 
a/regression-test/suites/external_table_p0/tvf/insert/test_insert_into_s3_tvf.groovy
 
b/regression-test/suites/external_table_p0/tvf/insert/test_insert_into_s3_tvf.groovy
index 0e1ebbf27f9..59bc64e937a 100644
--- 
a/regression-test/suites/external_table_p0/tvf/insert/test_insert_into_s3_tvf.groovy
+++ 
b/regression-test/suites/external_table_p0/tvf/insert/test_insert_into_s3_tvf.groovy
@@ -28,7 +28,8 @@ suite("test_insert_into_s3_tvf", "external,external_docker") {
         return
     }
 
-    def s3BasePath = "${bucket}/regression/insert_tvf_test"
+    def s3BasePrefix = 
"regression/insert_tvf_test/${UUID.randomUUID().toString()}"
+    def s3BasePath = "${bucket}/${s3BasePrefix}"
 
     // file_path is now a prefix; BE generates: {prefix}{query_id}_{idx}.{ext}
     def s3WriteProps = { String path, String format ->
@@ -45,7 +46,7 @@ suite("test_insert_into_s3_tvf", "external,external_docker") {
     // Read uses wildcard to match generated file names
     def s3ReadProps = { String path, String format ->
         return """
-            "uri" = 
"https://${bucket}.${s3_endpoint}/regression/insert_tvf_test/${path}";,
+            "uri" = "https://${bucket}.${s3_endpoint}/${s3BasePrefix}/${path}";,
             "s3.access_key" = "${ak}",
             "s3.secret_key" = "${sk}",
             "format" = "${format}",


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

Reply via email to