mirror of
https://github.com/meilisearch/MeiliSearch
synced 2025-07-15 13:58:36 +02:00
Small fixes
This commit is contained in:
parent
ebef6bc24d
commit
39cbb499c2
2 changed files with 4 additions and 1 deletions
|
@ -53,7 +53,9 @@ pub fn into_del_add_obkv<K: obkv::Key + PartialOrd>(
|
|||
value_writer.insert(DelAdd::Addition, value)?;
|
||||
}
|
||||
value_writer.finish()?;
|
||||
writer.insert(key, &value_buffer)?;
|
||||
if !value_buffer.is_empty() {
|
||||
writer.insert(key, &value_buffer)?;
|
||||
}
|
||||
}
|
||||
|
||||
writer.finish()
|
||||
|
|
|
@ -121,6 +121,7 @@ fn words_position_into_sorter(
|
|||
key
|
||||
}
|
||||
Both(key, _) => {
|
||||
// both values needs to be kept because it will be used in other extractors.
|
||||
value_writer.insert(DelAdd::Deletion, document_id.to_ne_bytes()).unwrap();
|
||||
value_writer.insert(DelAdd::Addition, document_id.to_ne_bytes()).unwrap();
|
||||
key
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue