(&self)
| 179 | #[async_trait] |
| 180 | impl SchemaProvider for DirSchema { |
| 181 | fn table_names(&self) -> Vec<String> { |
| 182 | let tables = self.tables.read().unwrap(); |
| 183 | tables.keys().cloned().collect::<Vec<_>>() |
| 184 | } |
| 185 | |
| 186 | async fn table(&self, name: &str) -> Result<Option<Arc<dyn TableProvider>>> { |
| 187 | let tables = self.tables.read().unwrap(); |
no test coverage detected