diff --git a/CHANGELOG.md b/CHANGELOG.md index 108eb0004..c6453b828 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -31,6 +31,8 @@ request adding CHANGELOG notes for breaking (!) changes and possibly other secti ### Upgrade notes +- The `LIST_PAGINATION_ENABLED` feature configuration was unused and has been removed. + ### Breaking changes - Helm chart: the default value of the `authentication.tokenBroker.secret.symmetricKey.secretKey` property has changed diff --git a/integration-tests/src/main/java/org/apache/polaris/service/it/test/PolarisRestCatalogIntegrationBase.java b/integration-tests/src/main/java/org/apache/polaris/service/it/test/PolarisRestCatalogIntegrationBase.java index c8400e5ba..02f4e880e 100644 --- a/integration-tests/src/main/java/org/apache/polaris/service/it/test/PolarisRestCatalogIntegrationBase.java +++ b/integration-tests/src/main/java/org/apache/polaris/service/it/test/PolarisRestCatalogIntegrationBase.java @@ -164,8 +164,7 @@ public abstract class PolarisRestCatalogIntegrationBase extends CatalogTests LIST_PAGINATION_ENABLED = - PolarisConfiguration.builder() - .key("LIST_PAGINATION_ENABLED") - .catalogConfig("polaris.config.list-pagination-enabled") - .description("If set to true, pagination for APIs like listTables is enabled.") - .defaultValue(false) - .buildFeatureConfiguration(); - public static final FeatureConfiguration ENABLE_GENERIC_TABLES = PolarisConfiguration.builder() .key("ENABLE_GENERIC_TABLES") diff --git a/runtime/service/src/test/java/org/apache/polaris/service/catalog/AbstractIcebergCatalogTest.java b/runtime/service/src/test/java/org/apache/polaris/service/catalog/AbstractIcebergCatalogTest.java index b37447616..9f6c8625b 100644 --- a/runtime/service/src/test/java/org/apache/polaris/service/catalog/AbstractIcebergCatalogTest.java +++ b/runtime/service/src/test/java/org/apache/polaris/service/catalog/AbstractIcebergCatalogTest.java @@ -196,7 +196,6 @@ public Map getConfigOverrides() { return ImmutableMap.builder() .putAll(super.getConfigOverrides()) .put("polaris.features.\"ALLOW_TABLE_LOCATION_OVERLAP\"", "true") - .put("polaris.features.\"LIST_PAGINATION_ENABLED\"", "true") .build(); } } diff --git a/runtime/service/src/test/java/org/apache/polaris/service/catalog/AbstractIcebergCatalogViewTest.java b/runtime/service/src/test/java/org/apache/polaris/service/catalog/AbstractIcebergCatalogViewTest.java index b7ad58930..12cb3bd17 100644 --- a/runtime/service/src/test/java/org/apache/polaris/service/catalog/AbstractIcebergCatalogViewTest.java +++ b/runtime/service/src/test/java/org/apache/polaris/service/catalog/AbstractIcebergCatalogViewTest.java @@ -90,7 +90,6 @@ public Map getConfigOverrides() { .putAll(super.getConfigOverrides()) .put("polaris.features.\"ALLOW_WILDCARD_LOCATION\"", "true") .put("polaris.features.\"SKIP_CREDENTIAL_SUBSCOPING_INDIRECTION\"", "true") - .put("polaris.features.\"LIST_PAGINATION_ENABLED\"", "true") .build(); } }