danny0405 commented on code in PR #8797:
URL: https://github.com/apache/hudi/pull/8797#discussion_r1206169146
##########
hudi-common/src/main/java/org/apache/hudi/common/table/log/InstantRange.java:
##########
@@ -174,6 +195,11 @@ public Builder nullableBoundary(boolean nullable) {
return this;
}
+ public Builder explicitInstants(Set<String> instants) {
+ this.explicitInstants = CollectionUtils.createImmutableSet(instants);
+ return this;
+ }
+
Review Comment:
We have only one builder here, no builder for specific impl clazz.
--
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]