pub trait SystemSchemaProvider {
// Required method
fn tables(&self) -> &HashMap<String, TableRef>;
// Provided methods
fn table(&self, name: &str) -> Option<TableRef> { ... }
fn table_names(&self) -> Vec<String> { ... }
}
Required Methods§
Provided Methods§
sourcefn table_names(&self) -> Vec<String>
fn table_names(&self) -> Vec<String>
Returns table names in the order of table id.