mirror of https://github.com/apache/lucene.git
SOLR-2432: fix useFilterForSortedQuery which was broken by LUCENE-2831
git-svn-id: https://svn.apache.org/repos/asf/lucene/dev/trunk@1090913 13f79535-47bb-0310-9956-ffa450edef68
This commit is contained in:
parent
bcd2440a88
commit
3309b5c585
|
@ -1593,14 +1593,12 @@ public class SolrIndexSearcher extends IndexSearcher implements SolrInfoMBean {
|
|||
DocIterator iter = set.iterator();
|
||||
int base=0;
|
||||
int end=0;
|
||||
int readerIndex = -1;
|
||||
|
||||
AtomicReaderContext leaf = null;
|
||||
int readerIndex = 0;
|
||||
|
||||
for (int i = 0; i < leafContexts.length; i++) {
|
||||
while (iter.hasNext()) {
|
||||
int doc = iter.nextDoc();
|
||||
while (doc>=end) {
|
||||
leaf = leafContexts[i++];
|
||||
AtomicReaderContext leaf = leafContexts[readerIndex++];
|
||||
base = leaf.docBase;
|
||||
end = base + leaf.reader.maxDoc();
|
||||
topCollector.setNextReader(leaf);
|
||||
|
|
Loading…
Reference in New Issue