Get the path for a table (warehouse / `database.db` / table).
(&self, identifier: &Identifier)
| 128 | |
| 129 | /// Get the path for a table (warehouse / `database.db` / table). |
| 130 | fn table_path(&self, identifier: &Identifier) -> String { |
| 131 | make_path( |
| 132 | &self.database_path(identifier.database()), |
| 133 | identifier.object(), |
| 134 | ) |
| 135 | } |
| 136 | |
| 137 | /// Path to the schema directory under a table path. |
| 138 | fn schema_dir_path(&self, table_path: &str) -> String { |
no test coverage detected