type NextRecordBatchResult = Result<(StreamReader<BufReader<File>>, Option<RecordBatch>)>;Expand description
When we poll for the next batch, we will get back both the batch and the reader,
so we can call next again.
Aliased Type§
enum NextRecordBatchResult {
Ok((StreamReader<BufReader<File>>, Option<RecordBatch>)),
Err(DataFusionError),
}