usestd::collections::HashMap;usegitql_ast::types::DataType;/// A Representation of the Schema of the data including columns, tables and types
pubstructSchema{pubtables_fields_names:HashMap<&'staticstr, Vec<&'staticstr>>,
pubtables_fields_types:HashMap<&'staticstr, Box<dyn DataType>>,
}