1
2
3
4
5
6
7
use crate::ast::types::Index;

#[derive(Clone, Debug, PartialEq, Eq)]
pub enum ScanType {
    FullScan,
    IndexScan(Index),
}