mirror of
https://github.com/meilisearch/meilisearch.git
synced 2025-07-28 09:11:00 +00:00
Try to make facet indexing incremental
This commit is contained in:
committed by
Loïc Lecrenier
parent
d30c89e345
commit
85824ee203
@ -138,7 +138,7 @@ impl<'t, 'b, 'bitmap> FacetRangeSearch<'t, 'b, 'bitmap> {
|
||||
let should_skip = {
|
||||
match self.left {
|
||||
Bound::Included(left) => left >= next_key.left_bound,
|
||||
Bound::Excluded(left) => left >= next_key.left_bound, // TODO: use > instead?
|
||||
Bound::Excluded(left) => left >= next_key.left_bound,
|
||||
Bound::Unbounded => false,
|
||||
}
|
||||
};
|
||||
|
Reference in New Issue
Block a user