flyrain commented on code in PR #273:
URL: https://github.com/apache/polaris/pull/273#discussion_r2070577979
##########
polaris-core/src/main/java/org/apache/polaris/core/config/FeatureConfiguration.java:
##########
@@ -202,6 +202,16 @@ public static void enforceFeatureEnabledOrThrow(
.defaultValue(2)
.buildFeatureConfiguration();
+ public static final PolarisConfiguration<Boolean> LIST_PAGINATION_ENABLED =
+ PolarisConfiguration.<Boolean>builder()
+ .key("LIST_PAGINATION_ENABLED")
+ .catalogConfig("list-pagination.enabled")
+ .description(
+ "If set to true, pagination for APIs like listTables is enabled.
The APIs that"
+ + " currently support pagination are listTables, listViews,
and listNamespaces.")
+ .defaultValue(false)
Review Comment:
+1 on false by default.
--
This is an automated message from the Apache Git Service.
To respond to the message, please log on to GitHub and use the
URL above to go to the specific comment.
To unsubscribe, e-mail: [email protected]
For queries about this service, please contact Infrastructure at:
[email protected]