diff --git a/integration-tests/src/main/java/org/apache/polaris/service/it/test/PolarisPolicyServiceIntegrationTest.java b/integration-tests/src/main/java/org/apache/polaris/service/it/test/PolarisPolicyServiceIntegrationTest.java index c836ffdabc..787215c4bc 100644 --- a/integration-tests/src/main/java/org/apache/polaris/service/it/test/PolarisPolicyServiceIntegrationTest.java +++ b/integration-tests/src/main/java/org/apache/polaris/service/it/test/PolarisPolicyServiceIntegrationTest.java @@ -133,8 +133,8 @@ public class PolarisPolicyServiceIntegrationTest { s3BucketBase + "/" + System.getenv("USER") + "/path/to/data"; private static final String[] DEFAULT_CATALOG_PROPERTIES = { - "allow.unstructured.table.location", "true", - "allow.external.table.location", "true" + "polaris.config.allow.unstructured.table.location", "true", + "polaris.config.allow.external.table.location", "true" }; @Retention(RetentionPolicy.RUNTIME) @@ -142,8 +142,8 @@ public class PolarisPolicyServiceIntegrationTest { Catalog.TypeEnum value() default Catalog.TypeEnum.INTERNAL; String[] properties() default { - "allow.unstructured.table.location", "true", - "allow.external.table.location", "true" + "polaris.config.allow.unstructured.table.location", "true", + "polaris.config.allow.external.table.location", "true" }; } diff --git a/integration-tests/src/main/java/org/apache/polaris/service/it/test/PolarisRestCatalogIntegrationTest.java b/integration-tests/src/main/java/org/apache/polaris/service/it/test/PolarisRestCatalogIntegrationTest.java index 4c62a87480..a859338b97 100644 --- a/integration-tests/src/main/java/org/apache/polaris/service/it/test/PolarisRestCatalogIntegrationTest.java +++ b/integration-tests/src/main/java/org/apache/polaris/service/it/test/PolarisRestCatalogIntegrationTest.java @@ -163,8 +163,8 @@ public class PolarisRestCatalogIntegrationTest extends CatalogTests "catalog-override-key4"); private static final String[] DEFAULT_CATALOG_PROPERTIES = { - "allow.unstructured.table.location", "true", - "allow.external.table.location", "true" + "polaris.config.allow.unstructured.table.location", "true", + "polaris.config.allow.external.table.location", "true" }; @Retention(RetentionPolicy.RUNTIME) @@ -172,8 +172,8 @@ public class PolarisRestCatalogIntegrationTest extends CatalogTests Catalog.TypeEnum value() default Catalog.TypeEnum.INTERNAL; String[] properties() default { - "allow.unstructured.table.location", "true", - "allow.external.table.location", "true" + "polaris.config.allow.unstructured.table.location", "true", + "polaris.config.allow.external.table.location", "true" }; }