This is an automated email from the ASF dual-hosted git repository. xxubai pushed a commit to branch 0.9.x in repository https://gitbox.apache.org/repos/asf/amoro.git
commit 48735a8e32950a72dbcc143d9b9cb06be977d607 Author: WenLingzhang <[email protected]> AuthorDate: Tue Jul 21 15:50:08 2026 +0800 [hotfix] Fix S3 credentials not vended when loading Lance table (#4279) fixup bug Co-authored-by: 张文领 <[email protected]> (cherry picked from commit cbd7d65652226f9f7b259924b3d2164b5ea8d7a5) --- .../java/org/apache/amoro/formats/lance/LanceDirectoryV1Catalog.java | 1 + 1 file changed, 1 insertion(+) diff --git a/amoro-format-lance/src/main/java/org/apache/amoro/formats/lance/LanceDirectoryV1Catalog.java b/amoro-format-lance/src/main/java/org/apache/amoro/formats/lance/LanceDirectoryV1Catalog.java index e522c3711..cbb3ce5a2 100755 --- a/amoro-format-lance/src/main/java/org/apache/amoro/formats/lance/LanceDirectoryV1Catalog.java +++ b/amoro-format-lance/src/main/java/org/apache/amoro/formats/lance/LanceDirectoryV1Catalog.java @@ -81,6 +81,7 @@ public class LanceDirectoryV1Catalog implements FormatCatalog { Preconditions.checkArgument( root != null && !root.isEmpty(), "Warehouse must be set in catalogProperties."); this.namespaceProperties.put("manifest_enabled", "false"); + this.namespaceProperties.put("vend_input_storage_options", "true"); this.namespaceProperties.put("root", root); if (storageAccessKey != null) { this.namespaceProperties.put(STORAGE_ACCESS_KEY_ID, storageAccessKey);
