amogh-jahagirdar commented on code in PR #1758:
URL: https://github.com/apache/iceberg-rust/pull/1758#discussion_r2442569388


##########
crates/iceberg/src/delete_file_index.rs:
##########
@@ -169,10 +169,10 @@ impl PopulatedDeleteFileIndex {
 
         self.global_deletes
             .iter()
-            // filter that returns true if the provided delete file's sequence 
number is **greater than or equal to** `seq_num`
+            // filter that returns true if the provided delete file's sequence 
number is **greater than** `seq_num`

Review Comment:
   I noticed this when I was working on some optimizations for equality delete 
matching (eliminating eq deletes to apply based on bounds)



##########
crates/iceberg/src/delete_file_index.rs:
##########
@@ -169,10 +169,10 @@ impl PopulatedDeleteFileIndex {
 
         self.global_deletes
             .iter()
-            // filter that returns true if the provided delete file's sequence 
number is **greater than or equal to** `seq_num`
+            // filter that returns true if the provided delete file's sequence 
number is **greater than** `seq_num`

Review Comment:
   I could just be missing something in the implementation, but right now seems 
like we're over applying in a way that would technically be incorrect.



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

Reply via email to