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

adutra pushed a commit to branch feature/iceberg-1.11
in repository https://gitbox.apache.org/repos/asf/polaris.git

commit aa5f59d3c079ffc7a14146eb8a4fe61b46a80a90
Author: Alexandre Dutra <[email protected]>
AuthorDate: Mon Mar 9 21:10:10 2026 +0100

    Fix compilation failure after #3719
---
 .../org/apache/polaris/service/catalog/iceberg/IcebergCatalog.java    | 4 ++--
 1 file changed, 2 insertions(+), 2 deletions(-)

diff --git 
a/runtime/service/src/main/java/org/apache/polaris/service/catalog/iceberg/IcebergCatalog.java
 
b/runtime/service/src/main/java/org/apache/polaris/service/catalog/iceberg/IcebergCatalog.java
index 4a4d0b3b26..901eeafd04 100644
--- 
a/runtime/service/src/main/java/org/apache/polaris/service/catalog/iceberg/IcebergCatalog.java
+++ 
b/runtime/service/src/main/java/org/apache/polaris/service/catalog/iceberg/IcebergCatalog.java
@@ -333,9 +333,9 @@ public class IcebergCatalog extends BaseMetastoreViewCatalog
 
     String locationDir = metadataFileLocation.substring(0, lastSlashIndex);
     if (tableExists) {
-      overwriteRegisteredTable(identifier, metadataFileLocation, locationDir);
+      return overwriteRegisteredTable(identifier, metadataFileLocation, 
locationDir);
     } else {
-      registerNewTable(identifier, metadataFileLocation, locationDir);
+      return registerNewTable(identifier, metadataFileLocation, locationDir);
     }
   }
 

Reply via email to