mirror of
https://github.com/meilisearch/meilisearch.git
synced 2025-09-04 03:36: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> {
|
||||
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)?;
|
||||
|
||||
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)
|
||||
.is_some_and(|(_, features)| features.is_filterable())
|
||||
|| attribute == RESERVED_VECTORS_FIELD_NAME
|
||||
|
Reference in New Issue
Block a user