mirror of
https://github.com/meilisearch/meilisearch.git
synced 2025-01-19 01:18:31 +08:00
Do not consider the searchable field as filterable
This commit is contained in:
parent
41c4a5b60d
commit
c31cadb54f
@ -673,6 +673,7 @@ impl<'s, A: AsRef<[u8]>> Store<'s, A> {
|
||||
let value =
|
||||
serde_json::from_slice(content).map_err(InternalError::SerdeJson)?;
|
||||
|
||||
if self.faceted_fields.contains(&attr) {
|
||||
let (facet_numbers, facet_strings) = extract_facet_values(&value);
|
||||
facet_numbers_values
|
||||
.entry(attr)
|
||||
@ -682,6 +683,7 @@ impl<'s, A: AsRef<[u8]>> Store<'s, A> {
|
||||
.entry(attr)
|
||||
.or_insert_with(Vec::new)
|
||||
.extend(facet_strings);
|
||||
}
|
||||
|
||||
if self.searchable_fields.contains(&attr) {
|
||||
let content = match json_to_string(&value) {
|
||||
|
Loading…
Reference in New Issue
Block a user