return docs;
}
if (docsInRowSpanToFetch.fastGet(cursor)) {
maxDocsToFetch--;
int docID = primeDocId + cursor;
segmentReader.document(docID, fieldSelector);
Document document = fieldSelector.getDocument();
if (highlighter.shouldHighlight()) {
docs.add(highlighter.highlight(docID, document, segmentReader));
} else {
docs.add(document);