mirror of
https://github.com/meilisearch/meilisearch.git
synced 2025-09-04 11:46:30 +00:00
Remove debugs
This commit is contained in:
@ -230,7 +230,7 @@ impl<'a> Filter<'a> {
|
|||||||
}
|
}
|
||||||
|
|
||||||
pub fn use_vector_filter(&self) -> Option<&Token> {
|
pub fn use_vector_filter(&self) -> Option<&Token> {
|
||||||
dbg!(self.condition.use_vector_filter())
|
self.condition.use_vector_filter()
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
@ -241,7 +241,7 @@ impl<'a> Filter<'a> {
|
|||||||
let filterable_attributes_rules = index.filterable_attributes_rules(rtxn)?;
|
let filterable_attributes_rules = index.filterable_attributes_rules(rtxn)?;
|
||||||
|
|
||||||
for fid in self.condition.fids(MAX_FILTER_DEPTH) {
|
for fid in self.condition.fids(MAX_FILTER_DEPTH) {
|
||||||
let attribute = dbg!(fid.value());
|
let attribute = fid.value();
|
||||||
if matching_features(attribute, &filterable_attributes_rules)
|
if matching_features(attribute, &filterable_attributes_rules)
|
||||||
.is_some_and(|(_, features)| features.is_filterable())
|
.is_some_and(|(_, features)| features.is_filterable())
|
||||||
|| attribute == RESERVED_VECTORS_FIELD_NAME
|
|| attribute == RESERVED_VECTORS_FIELD_NAME
|
||||||
|
Reference in New Issue
Block a user