wjones127 opened a new issue, #3704:
URL: https://github.com/apache/arrow-rs/issues/3704
**Is your feature request related to a problem or challenge? Please describe
what you are trying to do.**
As part of ADBC API, we need to produce `RecordBatchReader` from data. I
wasn't able to find any existing struct that produces one from a `RecordBatch`
or `Vec<RecordBatch>`. Would be happy to hear if I am mistaken! Otherwise,
happy to submit a PR for this.
**Describe the solution you'd like**
Probably something like:
```rust
struct SimpleRecordBatchReader { ... }
impl SimpleRecordBatchReader {
pub fn new(batches: Vec<RecordBatch>, schema: SchemaRef) -> Self;
}
```
**Describe alternatives you've considered**
Open to any alternatives.
**Additional context**
--
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]