ebradshaw commented on code in PR #14609: URL: https://github.com/apache/lucene/pull/14609#discussion_r2080658986
########## lucene/core/src/java/org/apache/lucene/search/PointRangeQuery.java: ########## @@ -580,4 +557,111 @@ public final String toString(String field) { * @return human readable value for debugging */ protected abstract String toString(int dimension, byte[] value); + + @Override + public Query rewrite(IndexSearcher searcher) throws IOException { + IndexReader reader = searcher.getIndexReader(); + + for (LeafReaderContext leaf : reader.leaves()) { + checkValidPointValues(leaf.reader().getPointValues(field)); + } + + // fetch the global min/max packed values across all segments + byte[] globalMinPacked = PointValues.getMinPackedValue(reader, getField()); + byte[] globalMaxPacked = PointValues.getMaxPackedValue(reader, getField()); + if (globalMinPacked == null || globalMaxPacked == null) { + return super.rewrite(searcher); + } + + int dims = getNumDims(); + int bytesPerDim = getBytesPerDim(); + byte[] queryLow = getLowerPoint(); + byte[] queryHigh = getUpperPoint(); + + int fullyContainedCount = 0; + int fullyExcludedCount = 0; + + // Check each dimension individually + for (int dim = 0; dim < dims; dim++) { + int offset = dim * bytesPerDim; + BytesRef qLow = new BytesRef(queryLow, offset, bytesPerDim); + BytesRef qHigh = new BytesRef(queryHigh, offset, bytesPerDim); + BytesRef gMin = new BytesRef(globalMinPacked, offset, bytesPerDim); + BytesRef gMax = new BytesRef(globalMaxPacked, offset, bytesPerDim); + + if (qLow.compareTo(gMin) <= 0 && qHigh.compareTo(gMax) >= 0) { + fullyContainedCount++; + } else if (qLow.compareTo(gMax) > 0 || qHigh.compareTo(gMin) < 0) { + fullyExcludedCount++; + } Review Comment: Since we're using the relate method, we'll get the short circuit for excluded, but it'll still run through every contained check to determine inside vs crosses. Should be okay since it's just a rewrite call? -- 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