pub trait RecordBatchIterator {
// Required methods
fn get_schema(&self) -> (RecordBatch, &[String]);
fn prepare(&mut self);
fn next_batch(&mut self) -> Option<RecordBatch>;
}
pub trait RecordBatchIterator {
// Required methods
fn get_schema(&self) -> (RecordBatch, &[String]);
fn prepare(&mut self);
fn next_batch(&mut self) -> Option<RecordBatch>;
}