the-other-tim-brown commented on code in PR #13444:
URL: https://github.com/apache/hudi/pull/13444#discussion_r2214385781


##########
hudi-common/src/main/java/org/apache/hudi/common/table/read/FileGroupRecordBuffer.java:
##########
@@ -394,4 +372,29 @@ static Comparable getOrderingValue(HoodieReaderContext 
readerContext,
         ? DEFAULT_ORDERING_VALUE
         : 
readerContext.convertValueToEngineType(deleteRecord.getOrderingValue());
   }
+
+  private static class LogRecordIterator<T> implements 
ClosableIterator<BufferedRecord<T>> {
+    private final FileGroupRecordBuffer<T> fileGroupRecordBuffer;
+    private final Iterator<BufferedRecord<T>> logRecordIterator;
+
+    private LogRecordIterator(FileGroupRecordBuffer<T> fileGroupRecordBuffer) {
+      this.fileGroupRecordBuffer = fileGroupRecordBuffer;
+      this.logRecordIterator = 
fileGroupRecordBuffer.records.values().iterator();

Review Comment:
   Thanks for catching this, I updated it



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