mirror of
https://github.com/meilisearch/meilisearch.git
synced 2025-07-28 01:01:00 +00:00
Fix the facet string levels codecs
This commit is contained in:
committed by
Kerollmops
parent
8c86348119
commit
5676b204dd
@ -286,6 +286,10 @@ impl<'s, A: AsRef<[u8]>> Store<'s, A> {
|
||||
value: String,
|
||||
id: DocumentId,
|
||||
) -> Result<()> {
|
||||
if value.is_empty() {
|
||||
return Ok(());
|
||||
}
|
||||
|
||||
let sorter = &mut self.field_id_docid_facet_strings_sorter;
|
||||
Self::write_field_id_docid_facet_string_value(sorter, field_id, id, &value)?;
|
||||
|
||||
|
Reference in New Issue
Block a user