mirror of
https://github.com/meilisearch/MeiliSearch
synced 2025-07-04 12:27:13 +02:00
Add TmpIndex::delete_documents
This commit is contained in:
parent
113527f466
commit
fa6c7f65ca
1 changed files with 6 additions and 3 deletions
|
@ -1526,7 +1526,7 @@ pub(crate) mod tests {
|
|||
Ok(())
|
||||
}
|
||||
|
||||
pub fn delete_document(&self, external_document_id: &str) {
|
||||
pub fn delete_documents(&self, external_document_ids: Vec<String>) {
|
||||
let mut wtxn = self.write_txn().unwrap();
|
||||
|
||||
let builder = IndexDocuments::new(
|
||||
|
@ -1538,13 +1538,16 @@ pub(crate) mod tests {
|
|||
|| false,
|
||||
)
|
||||
.unwrap();
|
||||
let (builder, user_error) =
|
||||
builder.remove_documents(vec![external_document_id.to_owned()]).unwrap();
|
||||
let (builder, user_error) = builder.remove_documents(external_document_ids).unwrap();
|
||||
user_error.unwrap();
|
||||
builder.execute().unwrap();
|
||||
|
||||
wtxn.commit().unwrap();
|
||||
}
|
||||
|
||||
pub fn delete_document(&self, external_document_id: &str) {
|
||||
self.delete_documents(vec![external_document_id.to_string()])
|
||||
}
|
||||
}
|
||||
|
||||
#[test]
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue