WIP: dump

This commit is contained in:
tamo
2021-04-29 14:45:08 +02:00
parent 0275b36fb0
commit 0f94ef8abc
10 changed files with 64 additions and 40 deletions

View File

@ -178,6 +178,10 @@ mod test {
self.as_ref().snapshot(uuid, path).await
}
async fn dump(&self, uuid: Uuid, path: PathBuf) -> IndexResult<()> {
self.as_ref().dump(uuid, path).await
}
async fn get_index_stats(&self, uuid: Uuid) -> IndexResult<IndexStats> {
self.as_ref().get_index_stats(uuid).await
}