jpountz commented on a change in pull request #658: URL: https://github.com/apache/lucene/pull/658#discussion_r802625846
########## File path: lucene/core/src/java/org/apache/lucene/search/PointRangeQuery.java ########## @@ -369,6 +376,45 @@ public Scorer scorer(LeafReaderContext context) throws IOException { return scorerSupplier.get(Long.MAX_VALUE); } + @Override + public int count(LeafReaderContext context) throws IOException { + LeafReader reader = context.reader(); + + PointValues values = reader.getPointValues(field); + if (checkValidPointValues(values) == false) { + return 0; + } + + if (reader.hasDeletions() == false + && numDims == 1 + && values.getDocCount() == values.size()) { + // if all documents have at-most one point + final int[] intersectingLeafNodeCount = {0}; + // create a custom IntersectVisitor that records the number of leafNodes that matched + final IntersectVisitor visitor = + new IntersectVisitor() { + @Override + public void visit(int docID) { + intersectingLeafNodeCount[0]++; Review comment: I'm good if we give this method a good signature. -- 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. To unsubscribe, e-mail: issues-unsubscr...@lucene.apache.org For queries about this service, please contact Infrastructure at: us...@infra.apache.org --------------------------------------------------------------------- To unsubscribe, e-mail: issues-unsubscr...@lucene.apache.org For additional commands, e-mail: issues-h...@lucene.apache.org