Tudyx opened a new issue #1278:
URL: https://github.com/apache/arrow-rs/issues/1278


   I want to read `arrow::array`  from `StreamReader` to be able to call the 
`slice` method on it. So far i have the reading part but i don't find the good 
functions to make it into an array.
   ```rust
   let file = File::open("foo.arrow").unwrap();
   let mut stream_reader = 
arrow::ipc::reader::StreamReader::try_new(file).unwrap();
   ```
   I tried
   ```rust
   let array = stream_reader.collect();
   ```
   and i also tried accessing the `BufReader<R>` of `StreamReader` directly 
without success.
   


-- 
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]


Reply via email to