suryaprasanna commented on code in PR #8832:
URL: https://github.com/apache/hudi/pull/8832#discussion_r1225682811


##########
hudi-common/src/main/java/org/apache/hudi/common/table/timeline/HoodieDefaultTimeline.java:
##########
@@ -204,6 +204,13 @@ public HoodieDefaultTimeline 
findInstantsInRangeByStateTransitionTime(String sta
         details);
   }
 
+  @Override
+  public HoodieDefaultTimeline findInstantsModifiedAfter(String instantTime) {
+    return new HoodieDefaultTimeline(instants.stream()
+        .filter(s -> 
HoodieTimeline.compareTimestamps(s.getStateTransitionTime(),

Review Comment:
   Wherever stateTransition times are used, I have added state transition in 
the APIs itself, so users are well aware of what they are using.



-- 
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]

Reply via email to