Merge pull request #567 from meilisearch/fix-not-dedup-matches

Construct a Set using the from_dirty method
This commit is contained in:
Clément Renault 2020-03-31 10:15:03 +02:00 committed by GitHub
commit 3b25bd71ab
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
1 changed files with 1 additions and 1 deletions

View File

@ -531,7 +531,7 @@ pub fn traverse_query_tree<'o, 'txn>(
let docids = SetBuf::new(docids).unwrap();
debug!("{:2$}docids construction took {:.02?}", "", before.elapsed(), depth * 2);
let matches = Cow::Owned(SetBuf::new(matches).unwrap());
let matches = Cow::Owned(SetBuf::from_dirty(matches));
let key = PostingsKey { query, input: vec![], distance: 0, is_exact: true };
postings.insert(key, matches);