Path to the schema directory under a table path.
(&self, table_path: &str)
| 136 | |
| 137 | /// Path to the schema directory under a table path. |
| 138 | fn schema_dir_path(&self, table_path: &str) -> String { |
| 139 | make_path(table_path, SCHEMA_DIR) |
| 140 | } |
| 141 | |
| 142 | /// Get the schema file path for a given version (table_path/schema/schema-{version}). |
| 143 | fn schema_file_path(&self, table_path: &str, schema_id: i64) -> String { |
no test coverage detected