mirror of
https://github.com/meilisearch/MeiliSearch
synced 2025-07-04 20:37:15 +02:00
Remove useless geo skipped
This commit is contained in:
parent
9b60843831
commit
5727e00374
3 changed files with 2 additions and 3 deletions
|
@ -415,6 +415,6 @@ impl WordDocidsExtractors {
|
|||
}
|
||||
|
||||
fn attributes_to_skip<'a>(_rtxn: &'a RoTxn, _index: &'a Index) -> Result<Vec<&'a str>> {
|
||||
Ok(vec!["_geo"])
|
||||
Ok(Vec::new())
|
||||
}
|
||||
}
|
||||
|
|
|
@ -25,7 +25,7 @@ impl SearchableExtractor for WordPairProximityDocidsExtractor {
|
|||
}
|
||||
|
||||
fn attributes_to_skip<'a>(_rtxn: &'a RoTxn, _index: &'a Index) -> Result<Vec<&'a str>> {
|
||||
Ok(vec!["_geo"])
|
||||
Ok(Vec::new())
|
||||
}
|
||||
|
||||
// This method is reimplemented to count the number of words in the document in each field
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue