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

kirs 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 dbe5dd8c474 [test](regression) Enable standard URI parsing for OSS 
bucket-endpoin… (#62429)
dbe5dd8c474 is described below

commit dbe5dd8c47466a06680f4f536a0fbf8a8843118b
Author: Calvin Kirs <[email protected]>
AuthorDate: Mon Apr 13 15:14:34 2026 +0800

    [test](regression) Enable standard URI parsing for OSS bucket-endpoin… 
(#62429)
    
    Related PR: None
    
    Problem Summary: Work around the bucket-endpoint OSS Hive insert
    overwrite regression case by enabling standard URI parsing for that
    overwrite catalog configuration, so the case avoids the current FE
    cleanup failure on mixed-style OSS URIs.
    
    ### Release note
---
 .../refactor_catalog_param/hive_on_hms_and_dlf.groovy            | 9 ++++++++-
 1 file changed, 8 insertions(+), 1 deletion(-)

diff --git 
a/regression-test/suites/external_table_p2/refactor_catalog_param/hive_on_hms_and_dlf.groovy
 
b/regression-test/suites/external_table_p2/refactor_catalog_param/hive_on_hms_and_dlf.groovy
index 697baf87c2e..5731f744c29 100644
--- 
a/regression-test/suites/external_table_p2/refactor_catalog_param/hive_on_hms_and_dlf.groovy
+++ 
b/regression-test/suites/external_table_p2/refactor_catalog_param/hive_on_hms_and_dlf.groovy
@@ -358,6 +358,12 @@ suite("hive_on_hms_and_dlf", "p2,external") {
               'oss.secret_key' = '${oss_sk}',
               'oss.endpoint' = '${oss_endpoint}'
     """
+    String oss_bucket_endpoint_storage_properties = """
+              'oss.access_key' = '${oss_ak}',
+              'oss.secret_key' = '${oss_sk}',
+              'oss.endpoint' = '${oss_endpoint}',
+              'oss.force_parsing_by_standard_uri' = 'true'
+    """
     /****************COS*******************/
     String cos_ak = context.config.otherConfigs.get("txYunAk")
     String cos_sk = context.config.otherConfigs.get("txYunSk")
@@ -536,7 +542,8 @@ suite("hive_on_hms_and_dlf", "p2,external") {
     testPartitionTableInsert(hms_properties + oss_region_param + 
oss_storage_properties, "hive_hms_oss_bucket_endpoint_partition_test_region", 
db_location)
     //OSS - Insert overwrite tests
     db_location = 
"oss://${oss_bucket_endpoint_parent_path}/hive/hms/bucket_endpoint/overwrite/" 
+ System.currentTimeMillis()
-    testInsertOverwrite(hms_properties + oss_storage_properties, 
"hive_hms_oss_bucket_endpoint_overwrite_test", db_location)
+    testInsertOverwrite(hms_properties + 
oss_bucket_endpoint_storage_properties,
+            "hive_hms_oss_bucket_endpoint_overwrite_test", db_location)
 
     //s3
     db_location = 
"s3a://${s3_parent_path}/hive/hms/"+System.currentTimeMillis()


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

Reply via email to