pub trait SchemaGet {
// Required methods
fn table_list(&mut self) -> Result<Vec<String>, ConnectorError>;
fn table_get(&mut self, name: &str) -> Result<SchemaRef, ConnectorError>;
}Expand description
Schema introspection
pub trait SchemaGet {
// Required methods
fn table_list(&mut self) -> Result<Vec<String>, ConnectorError>;
fn table_get(&mut self, name: &str) -> Result<SchemaRef, ConnectorError>;
}Schema introspection