HeartLinked opened a new pull request, #200: URL: https://github.com/apache/iceberg-cpp/pull/200
- Introduced `ArrowArrayReader` Interface: Added a new abstract interface, `ArrowArrayReader`, to represent a stream of Arrow data. This provides a unified interface for all file format readers. - Added `FileScanTask::ToArrowArrayReader()` Factory Method: The FileScanTask now has a factory method that creates a file-format-specific reader (e.g., Parquet) and returns it as a `unique_ptr<ArrowArrayReader>`. This encapsulates the reader instantiation logic. - Added File Splitting Support: Enhanced `FileScanTask` with `start` and `length` members to enable reading portions of a data file (file splits) instead of the entire file, like the implement in other languages. -- 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]
