nsivabalan commented on code in PR #13383:
URL: https://github.com/apache/hudi/pull/13383#discussion_r2122495891


##########
hudi-common/src/main/java/org/apache/hudi/common/table/read/UnmergedFileGroupRecordBuffer.java:
##########
@@ -69,19 +71,31 @@ protected boolean doHasNext() {
     while ((recordIterator == null || !recordIterator.hasNext()) && 
!currentInstantLogBlocks.isEmpty()) {
       HoodieLogBlock logBlock = currentInstantLogBlocks.pop();
       if (logBlock instanceof HoodieDataBlock) {
+        isDeleteBlock = false;

Review Comment:
   nope, you can't make this local. it has to retain values across hasNext() 
calls. 



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