romseygeek commented on a change in pull request #1011: LUCENE-9031: Just 
highlight term intervals and its' combinations.
URL: https://github.com/apache/lucene-solr/pull/1011#discussion_r347098260
 
 

 ##########
 File path: 
lucene/queries/src/java/org/apache/lucene/queries/intervals/TermIntervalsSource.java
 ##########
 @@ -149,10 +150,18 @@ public MatchesIterator matches(String field, 
LeafReaderContext ctx, int doc) thr
     if (te.seekExact(term) == false) {
       return null;
     }
-    return matches(te, doc);
+    final TermQuery query;
+    final TermQuery cached = matchingQuery;
+    if (cached==null || !field.equals(cached.getTerm().field())) {
+      matchingQuery = query = new TermQuery(new Term(field, term));
+    } else {
+      query = cached;
+    }
 
 Review comment:
   I don't think this bit is necessary any more?

----------------------------------------------------------------
This is an automated message from the Apache Git Service.
To respond to the message, please log on to GitHub and use the
URL above to go to the specific comment.
 
For queries about this service, please contact Infrastructure at:
us...@infra.apache.org


With regards,
Apache Git Services

---------------------------------------------------------------------
To unsubscribe, e-mail: issues-unsubscr...@lucene.apache.org
For additional commands, e-mail: issues-h...@lucene.apache.org

Reply via email to