Skip to content

Commit 1361bd4

Browse files
authored
fix for IcebergAllowedLocationTest (#2511)
1 parent 453e9fb commit 1361bd4

File tree

2 files changed

+3
-1
lines changed

2 files changed

+3
-1
lines changed

runtime/service/src/test/java/org/apache/polaris/service/catalog/iceberg/AbstractIcebergCatalogTest.java

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -199,7 +199,7 @@ public Map<String, String> getConfigOverrides() {
199199
.putAll(super.getConfigOverrides())
200200
.put("polaris.features.\"ALLOW_TABLE_LOCATION_OVERLAP\"", "true")
201201
.put("polaris.features.\"LIST_PAGINATION_ENABLED\"", "true")
202-
.put("polaris.features.\"ALLOW_NAMESPACE_CUSTOM_LOCATION\"", "true")
202+
.put("polaris.behavior-changes.\"ALLOW_NAMESPACE_CUSTOM_LOCATION\"", "true")
203203
.build();
204204
}
205205
}

runtime/service/src/test/java/org/apache/polaris/service/catalog/iceberg/IcebergAllowedLocationTest.java

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -147,6 +147,8 @@ private static TestServices getTestServices() {
147147
"SUPPORTED_CATALOG_STORAGE_TYPES",
148148
List.of("FILE"),
149149
OPTIMIZED_SIBLING_CHECK.key(),
150+
"true",
151+
"ALLOW_NAMESPACE_CUSTOM_LOCATION",
150152
"true");
151153
TestServices services =
152154
TestServices.builder().config(strictServicesWithOptimizedOverlapCheck).build();

0 commit comments

Comments
 (0)