sfc-gh-ygu commented on issue #12467:
URL: https://github.com/apache/iceberg/issues/12467#issuecomment-2707132156
It's fine if the eq delete files will still be picked up at next read. But I
guess we did filter it out based on the sequence number, so that the previous
eq delete files won't be there at read time.
```
private Iterable<DeleteFile> filterDeleteFiles() {
return Iterables.filter(deleteFiles, file -> file.dataSequenceNumber()
> minSequenceNumber);
}
```
--
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]
---------------------------------------------------------------------
To unsubscribe, e-mail: [email protected]
For additional commands, e-mail: [email protected]