gitql_core/
schema.rs

1use std::collections::HashMap;
2
3use gitql_ast::types::DataType;
4
5/// A Representation of the Schema of the data including columns, tables and types
6pub struct Schema {
7    pub tables_fields_names: HashMap<&'static str, Vec<&'static str>>,
8    pub tables_fields_types: HashMap<&'static str, Box<dyn DataType>>,
9}