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