You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
pub enum IterByColRange<'a, R: RangeBounds<AlgebraicValue>> {
/// When the column in question does not have an index.
Scan(ScanIterByColRange<'a, R>),
/// When the column has an index, and the table
/// has been modified this transaction.
Index(IndexSeekIterInner<'a>),
/// When the column has an index, and the table
/// has not been modified in this transaction.
CommittedIndex(CommittedIndexIter<'a>),
}
The types here could have better names. Also does it need to be explicitly parameterized with a range or should it agnostic to the type of index?
The text was updated successfully, but these errors were encountered:
The types here could have better names. Also does it need to be explicitly parameterized with a range or should it agnostic to the type of index?
The text was updated successfully, but these errors were encountered: