pub trait IndexInformationProvider {
// Required method
fn get_index(
&self,
col: &str,
) -> Option<(&DataType, &dyn ScalarQueryParser)>;
}
Expand description
A trait to be used in apply_scalar_indices
to inform the function which columns are indexeds