danielcweeks commented on code in PR #14867:
URL: https://github.com/apache/iceberg/pull/14867#discussion_r2891553573
##########
core/src/main/java/org/apache/iceberg/rest/RESTCatalogProperties.java:
##########
@@ -59,4 +59,38 @@ public enum SnapshotMode {
ALL,
REFS
}
+
+ /**
+ * Enum to represent scan planning mode.
+ *
+ * <ul>
+ * <li>CLIENT - Use client-side scan planning
+ * <li>SERVER - Use server-side scan planning
+ * </ul>
+ */
+ public enum ScanPlanningMode {
+ CLIENT("client"),
Review Comment:
If this is just the lowercase version of the value, we don't need to store
it as a private member. You can just refer to the name and return `toLower`
--
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]
---------------------------------------------------------------------
To unsubscribe, e-mail: [email protected]
For additional commands, e-mail: [email protected]