Scott Donnelly
Scott Donnelly
Ensure that when it constructs a FileIO, RestConfig enriches the config with user config, so that props such as the custom s3 endpoint are passed through to FileIO.
This Draft PR outlines an approach to add support for proper handling of delete files within table scans. The approach taken is to include a list of delete file paths...
Addresses parts 2 and 3 of https://github.com/apache/iceberg-rust/issues/405. Add support for type promotion and default values to the read pipeline. * When the scan includes fields that have undergone type promotion...
I'm looking to start work on proper handling of delete files in table scans and so I'd like to open an issue to discuss some of the design decisions. A...
Once a version of Arrow is released that contains the changes in https://github.com/apache/arrow-rs/pull/6308, we can refactor our code in crates/iceberg/src/expr/visitors/page_index_evaluator.rs to use the native `RowSelection::union` rather than our own implemetation.
Extends the `DeleteFileManager` introduced in https://github.com/apache/iceberg-rust/pull/950 To include loading of delete files, storage and retrieval of parsed delete files from shared state, and the outline for how parsing will connect...
Continues the series of scan delete file support PRs. **Builds on top of https://github.com/apache/iceberg-rust/pull/982: click https://github.com/apache/iceberg-rust/pull/1011/commits/55044341bee2d6e12b7143424b02656d58bbf73c to see just the changes that are unique to this PR rather than the...
Concludes the series of scan delete file support PRs. **Builds on top of https://github.com/apache/iceberg-rust/pull/982: click https://github.com/apache/iceberg-rust/pull/1017/files/5739a4625c64e9772325b2360219294e964d0600..f62ac3f98942707eeb7a06410a52a9a5eea951ac to see just the changes that are unique to this PR rather than the...
I have a use case where I need the `advance_to` method, which is present on `RoaringBitmap`'s `Iter`, but I want to use it from a `RoaringTreemap`. This doesn't seem to...