CTTY commented on code in PR #11947:
URL: https://github.com/apache/hudi/pull/11947#discussion_r1797777809


##########
hudi-common/src/main/java/org/apache/hudi/common/table/read/IncrementalQueryAnalyzer.java:
##########
@@ -471,5 +500,20 @@ public HoodieTimeline getActiveTimeline() {
     public @Nullable HoodieTimeline getArchivedTimeline() {
       return archivedTimeline;
     }
+
+    public Option<String> getPredicateFilter() {
+      return predicateFilter;
+    }
+
+    public QueryContext withUpdatedEndInstant(String endInstant) {
+      return new QueryContext(
+          startInstant.get(),
+          endInstant,
+          instants,
+          archivedInstants,
+          activeInstants,
+          activeTimeline,archivedTimeline,
+          null);
+    }

Review Comment:
   Makes sense. I'll remove this method



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