We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 1e7cd48 commit 5fafe4bCopy full SHA for 5fafe4b
src/query/set_query.rs
@@ -72,6 +72,14 @@ impl Query for TermSetQuery {
72
fn weight(&self, enable_scoring: EnableScoring<'_>) -> crate::Result<Box<dyn Weight>> {
73
Ok(Box::new(self.specialized_weight(enable_scoring.schema())?))
74
}
75
+
76
+ fn query_terms<'a>(&'a self, visitor: &mut dyn FnMut(&'a Term, bool)) {
77
+ for terms in self.terms_map.values() {
78
+ for term in terms {
79
+ visitor(term, false);
80
+ }
81
82
83
84
85
struct SetDfaWrapper(Map<Vec<u8>>);
0 commit comments