Check if a table exists.
(&self, identifier: &Identifier)
| 195 | |
| 196 | /// Check if a table exists. |
| 197 | async fn table_exists(&self, identifier: &Identifier) -> Result<bool> { |
| 198 | self.file_io.exists(&self.table_path(identifier)).await |
| 199 | } |
| 200 | } |
| 201 | |
| 202 | #[async_trait] |
no test coverage detected