yihua commented on code in PR #12144:
URL: https://github.com/apache/hudi/pull/12144#discussion_r1811781189


##########
hudi-common/src/main/java/org/apache/hudi/common/table/read/HoodieUnmergedFileGroupRecordBuffer.java:
##########
@@ -120,15 +119,12 @@ public void processNextDataRecord(T record, Map<String, 
Object> metadata, Serial
 
   @Override
   public void processDeleteBlock(HoodieDeleteBlock deleteBlock) {
-    Iterator<DeleteRecord> it = 
Arrays.stream(deleteBlock.getRecordsToDelete()).iterator();
-    while (it.hasNext()) {
-      DeleteRecord record = it.next();
-      processNextDeletedRecord(record, putIndex++);
-    }
+    // no-op
   }
 
   @Override
   public void processNextDeletedRecord(DeleteRecord deleteRecord, Serializable 
index) {
+    //never used for now

Review Comment:
   ```suggestion
       // never used for now
   ```



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