pub type ColumnNameToId<'a> = HashMap<&'a str, u64>;
Define type aliases for the column mappings so that we can DRY.
pub struct ColumnNameToId<'a> { /* private fields */ }