mirror of
https://github.com/meilisearch/meilisearch.git
synced 2025-07-29 18:04:47 +00:00
Use the facet string levels when computing the facet distribution
This commit is contained in:
committed by
Kerollmops
parent
5676b204dd
commit
081278dfd6
@ -192,7 +192,7 @@ impl<'t> Iterator for FacetStringGroupRange<'t> {
|
||||
};
|
||||
if must_be_returned {
|
||||
match docids.decode() {
|
||||
Ok(docids) => Some(Ok(((level, left, right), docids))),
|
||||
Ok((bounds, docids)) => Some(Ok(((level, left, right), (bounds, docids)))),
|
||||
Err(e) => Some(Err(e)),
|
||||
}
|
||||
} else {
|
||||
|
Reference in New Issue
Block a user