pub trait RowIdFilter<P>: Send + Sync{
// Required method
fn filter(
&self,
table_id: TableId,
storage: &dyn ScanStorage<P>,
row_ids: Treemap,
) -> LlkvResult<Treemap>;
}Expand description
Filter row IDs before they are materialized into batches.