This is an automated email from the ASF dual-hosted git repository.
yufei pushed a commit to branch main
in repository https://gitbox.apache.org/repos/asf/polaris.git
The following commit(s) were added to refs/heads/main by this push:
new 1361bd42f fix for IcebergAllowedLocationTest (#2511)
1361bd42f is described below
commit 1361bd42f800df2f68b09e710c91642315525d8f
Author: Eric Maynard <[email protected]>
AuthorDate: Thu Sep 4 17:46:59 2025 -0700
fix for IcebergAllowedLocationTest (#2511)
---
.../polaris/service/catalog/iceberg/AbstractIcebergCatalogTest.java | 2 +-
.../polaris/service/catalog/iceberg/IcebergAllowedLocationTest.java | 2 ++
2 files changed, 3 insertions(+), 1 deletion(-)
diff --git
a/runtime/service/src/test/java/org/apache/polaris/service/catalog/iceberg/AbstractIcebergCatalogTest.java
b/runtime/service/src/test/java/org/apache/polaris/service/catalog/iceberg/AbstractIcebergCatalogTest.java
index a1146ceae..1ec9d87ba 100644
---
a/runtime/service/src/test/java/org/apache/polaris/service/catalog/iceberg/AbstractIcebergCatalogTest.java
+++
b/runtime/service/src/test/java/org/apache/polaris/service/catalog/iceberg/AbstractIcebergCatalogTest.java
@@ -199,7 +199,7 @@ public abstract class AbstractIcebergCatalogTest extends
CatalogTests<IcebergCat
.putAll(super.getConfigOverrides())
.put("polaris.features.\"ALLOW_TABLE_LOCATION_OVERLAP\"", "true")
.put("polaris.features.\"LIST_PAGINATION_ENABLED\"", "true")
- .put("polaris.features.\"ALLOW_NAMESPACE_CUSTOM_LOCATION\"", "true")
+ .put("polaris.behavior-changes.\"ALLOW_NAMESPACE_CUSTOM_LOCATION\"",
"true")
.build();
}
}
diff --git
a/runtime/service/src/test/java/org/apache/polaris/service/catalog/iceberg/IcebergAllowedLocationTest.java
b/runtime/service/src/test/java/org/apache/polaris/service/catalog/iceberg/IcebergAllowedLocationTest.java
index 789122dd8..09ae01739 100644
---
a/runtime/service/src/test/java/org/apache/polaris/service/catalog/iceberg/IcebergAllowedLocationTest.java
+++
b/runtime/service/src/test/java/org/apache/polaris/service/catalog/iceberg/IcebergAllowedLocationTest.java
@@ -147,6 +147,8 @@ public class IcebergAllowedLocationTest {
"SUPPORTED_CATALOG_STORAGE_TYPES",
List.of("FILE"),
OPTIMIZED_SIBLING_CHECK.key(),
+ "true",
+ "ALLOW_NAMESPACE_CUSTOM_LOCATION",
"true");
TestServices services =
TestServices.builder().config(strictServicesWithOptimizedOverlapCheck).build();