pub(crate) trait RowGroupReaderContext: Send {
// Required methods
fn map_result(
&self,
result: Result<Option<RecordBatch>, ArrowError>,
) -> Result<Option<RecordBatch>>;
fn read_format(&self) -> &ReadFormat;
}
Expand description
RowGroupReaderContext represents the fields that cannot be shared
between different RowGroupReader
s.