if (totalHeap >= maxHeap) {
LOG.warn("Max heap size exceeded for this request [{0}] max [{1}] for [{2}] and selector [{3}]",
totalHeap, maxHeap, context, selector);
return docs;
}
if (docsInRowSpanToFetch.fastGet(cursor)) {
maxDocsToFetch--;
int docID = primeDocId + cursor;
segmentReader.document(docID, fieldSelector);
Document document = fieldSelector.getDocument();
if (highlighter.shouldHighlight()) {