eshishki commented on issue #12280: URL: https://github.com/apache/iceberg/issues/12280#issuecomment-2661287874
currently we use starrocks which plans the scan like ``` UNION ├── ICEBERG_SCAN (data files with only pos deletes) │ └── OutputRows: 73 │ ── HASH_JOIN (LEFT ANTI JOIN) ├── <PROBE> ICEBERG_SCAN (data files covered by eq deletes) │ └── OutputRows: ~124.5M rows │ └── <BUILD> ICEBERG_SCAN rows from eq delete files) └── OutputRows: 246 └── Join Condition: id = id ``` so we have for 246 eq deletes rows, which bound stats cover the whole data files i don't know if it could be improved with bloom filter in canContainEqDeletesForFile -- 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