mirror of
https://github.com/meilisearch/MeiliSearch
synced 2025-07-03 11:57:07 +02:00
Take filter in account when computing the pages candidates
This commit is contained in:
parent
d71bc1e69f
commit
cf203b7fde
1 changed files with 5 additions and 1 deletions
|
@ -38,12 +38,16 @@ impl<D: Distinct> Criterion for Initial<'_, D> {
|
|||
.take()
|
||||
.map(|mut answer| {
|
||||
if self.exhaustive_number_hits && answer.query_tree.is_some() {
|
||||
let candidates = resolve_query_tree(
|
||||
let mut candidates = resolve_query_tree(
|
||||
self.ctx,
|
||||
answer.query_tree.as_ref().unwrap(),
|
||||
&mut params.wdcache,
|
||||
)?;
|
||||
|
||||
if let Some(ref filtered_candidates) = answer.filtered_candidates {
|
||||
candidates &= filtered_candidates;
|
||||
}
|
||||
|
||||
let bucket_candidates = match &mut self.distinct {
|
||||
// may be really time consuming
|
||||
Some(distinct) => {
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue