suxiaogang223 commented on issue #3721:
URL: https://github.com/apache/arrow-rs/issues/3721#issuecomment-1465212521
I sadly find that this feature could not be implemented elegantly. I want to
be able to stream compressed files, although I can use the `flate2` library to
process compressed files like normal files, but arrow-csv reader requires Seek
trait.
```Rust
arrow_csv::reader::ReaderBuilder
pub fn build<R>(self, reader: R) -> Result<Reader<R>, ArrowError>
where
R: Read + Seek,
```
--
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]