(table: &Table)
| 263 | } |
| 264 | |
| 265 | fn managers(table: &Table) -> (SnapshotManager, TagManager) { |
| 266 | let sm = SnapshotManager::new(table.file_io().clone(), table.location().to_string()); |
| 267 | let tm = TagManager::new(table.file_io().clone(), table.location().to_string()); |
| 268 | (sm, tm) |
| 269 | } |
| 270 | |
| 271 | async fn proc_create_tag( |
| 272 | ctx: &SessionContext, |
no test coverage detected