pub type OnCloseRowGroup<'a, W> = Box<dyn FnOnce(&'a mut TrackedWrite<W>, RowGroupMetaData, Vec<Option<Sbbf>>, Vec<Option<ColumnIndex>>, Vec<Option<OffsetIndex>>) -> Result<()> + Send + 'a>;
Expand description
Callback invoked on closing a row group, arguments are:
- the row group metadata
- the column index for each column chunk
- the offset index for each column chunk
Aliased Typeยง
struct OnCloseRowGroup<'a, W>(/* private fields */);