mirror of
https://github.com/meilisearch/MeiliSearch
synced 2024-11-22 21:04:27 +01:00
Don't try to delete a document that is not in the database
This commit is contained in:
parent
2544bc1416
commit
87610a5f98
@ -223,11 +223,13 @@ pub fn grenad_obkv_into_chunks<R: io::Read + io::Seek>(
|
|||||||
);
|
);
|
||||||
|
|
||||||
while let Some((document_id, obkv)) = cursor.move_on_next()? {
|
while let Some((document_id, obkv)) = cursor.move_on_next()? {
|
||||||
obkv_documents.insert(document_id, obkv)?;
|
if !obkv.is_empty() {
|
||||||
current_chunk_size += document_id.len() as u64 + obkv.len() as u64;
|
obkv_documents.insert(document_id, obkv)?;
|
||||||
|
current_chunk_size += document_id.len() as u64 + obkv.len() as u64;
|
||||||
|
|
||||||
if current_chunk_size >= documents_chunk_size as u64 {
|
if current_chunk_size >= documents_chunk_size as u64 {
|
||||||
return writer_into_reader(obkv_documents).map(Some);
|
return writer_into_reader(obkv_documents).map(Some);
|
||||||
|
}
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
|
Loading…
Reference in New Issue
Block a user