zhongyujiang commented on PR #6237:
URL: https://github.com/apache/iceberg/pull/6237#issuecomment-1321994998

   I think the current judgment has already  dealt with this situation, IIUC, 
deletes and data wil **not overlap** if:
   `(dataLower > deleteUpper) || (deleteLower > dataUpper)`
   So they **will overlap** when 
   `!((dataLower > deleteUpper) || (deleteLower > dataUpper)) `
   ->
   `(dataLower <= deleteUpper) && (deleteLower <= dataUpper)`
   which is exactly the current judgment.


-- 
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: issues-unsubscr...@iceberg.apache.org

For queries about this service, please contact Infrastructure at:
us...@infra.apache.org


---------------------------------------------------------------------
To unsubscribe, e-mail: issues-unsubscr...@iceberg.apache.org
For additional commands, e-mail: issues-h...@iceberg.apache.org

Reply via email to