mirror of
https://github.com/meilisearch/MeiliSearch
synced 2024-11-22 21:04:27 +01:00
Add Batch::index_uid
This commit is contained in:
parent
c91bfeaf15
commit
4c519c2ab3
@ -169,6 +169,22 @@ impl Batch {
|
|||||||
Batch::IndexSwap { task } => vec![task.uid],
|
Batch::IndexSwap { task } => vec![task.uid],
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
|
/// Return the index UID associated with this batch
|
||||||
|
pub fn index_uid(&self) -> Option<&str> {
|
||||||
|
use Batch::*;
|
||||||
|
match self {
|
||||||
|
TaskCancelation { .. }
|
||||||
|
| TaskDeletion(_)
|
||||||
|
| SnapshotCreation(_)
|
||||||
|
| Dump(_)
|
||||||
|
| IndexSwap { .. } => None,
|
||||||
|
IndexOperation { op, .. } => Some(op.index_uid()),
|
||||||
|
IndexCreation { index_uid, .. }
|
||||||
|
| IndexUpdate { index_uid, .. }
|
||||||
|
| IndexDeletion { index_uid, .. } => Some(index_uid),
|
||||||
|
}
|
||||||
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
impl IndexOperation {
|
impl IndexOperation {
|
||||||
|
Loading…
Reference in New Issue
Block a user