dsmiley commented on a change in pull request #1270: LUCENE-9237: Faster
UniformSplit IntersectBlockReader.
URL: https://github.com/apache/lucene-solr/pull/1270#discussion_r383536370
##########
File path:
lucene/codecs/src/java/org/apache/lucene/codecs/uniformsplit/IntersectBlockReader.java
##########
@@ -285,64 +362,66 @@ public void seekExact(long ord) {
}
@Override
- public SeekStatus seekCeil(BytesRef text) {
+ public void seekExact(BytesRef term, TermState state) {
throw new UnsupportedOperationException();
}
@Override
- public void seekExact(BytesRef term, TermState state) {
+ public SeekStatus seekCeil(BytesRef text) {
throw new UnsupportedOperationException();
}
/**
* This is a copy of AutomatonTermsEnum. Since it's an inner class, the
outer class can
Review comment:
Well; it's _mostly_ a copy of AutomatonTermsEnum now :-/ The duplication is
a shame. Just insert the word "_mostly_" and it satisfies me.
----------------------------------------------------------------
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:
[email protected]
With regards,
Apache Git Services
---------------------------------------------------------------------
To unsubscribe, e-mail: [email protected]
For additional commands, e-mail: [email protected]