Path to a specific schema file (e.g. `{table_path}/schema/schema-0`).
(&self, schema_id: i64)
| 74 | |
| 75 | /// Path to a specific schema file (e.g. `{table_path}/schema/schema-0`). |
| 76 | pub fn schema_path(&self, schema_id: i64) -> String { |
| 77 | format!("{}/{}{}", self.schema_directory(), SCHEMA_PREFIX, schema_id) |
| 78 | } |
| 79 | |
| 80 | /// List all schema ids sorted ascending. Returns an empty vector if the |
| 81 | /// schema directory is missing or empty. |
no outgoing calls
no test coverage detected