Skip to content
Closed
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
2 changes: 2 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -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
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -164,8 +164,7 @@ public abstract class PolarisRestCatalogIntegrationBase extends CatalogTests<RES

private static final String[] DEFAULT_CATALOG_PROPERTIES = {
"polaris.config.allow.unstructured.table.location", "true",
"polaris.config.allow.external.table.location", "true",
"polaris.config.list-pagination-enabled", "true"
"polaris.config.allow.external.table.location", "true"
};

@Retention(RetentionPolicy.RUNTIME)
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -219,14 +219,6 @@ public static void enforceFeatureEnabledOrThrow(
.defaultValue(2)
.buildFeatureConfiguration();

public static final PolarisConfiguration<Boolean> LIST_PAGINATION_ENABLED =
PolarisConfiguration.<Boolean>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<Boolean> ENABLE_GENERIC_TABLES =
PolarisConfiguration.<Boolean>builder()
.key("ENABLE_GENERIC_TABLES")
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -196,7 +196,6 @@ public Map<String, String> getConfigOverrides() {
return ImmutableMap.<String, String>builder()
.putAll(super.getConfigOverrides())
.put("polaris.features.\"ALLOW_TABLE_LOCATION_OVERLAP\"", "true")
.put("polaris.features.\"LIST_PAGINATION_ENABLED\"", "true")
.build();
}
}
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -90,7 +90,6 @@ public Map<String, String> 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();
}
}
Expand Down