yihua commented on code in PR #13650:
URL: https://github.com/apache/hudi/pull/13650#discussion_r2305627827
##########
hudi-common/src/main/java/org/apache/hudi/common/config/ConfigProperty.java:
##########
@@ -73,6 +77,7 @@ public class ConfigProperty<T> implements Serializable {
this.doc = doc;
this.sinceVersion = sinceVersion;
this.deprecatedVersion = deprecatedVersion;
+ this.supportedVersions = supportedVersions;
Review Comment:
It is not quite overlapping as `sinceVersion` marks the continuous versions
to be supported (e.g., `1.1.0` and above), while `supportedVersions` has minor
versions below (e.g., `0.14.2`, `0.15.1`, etc.). So is that OK?
--
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]