jpountz commented on code in PR #12622:
URL: https://github.com/apache/lucene/pull/12622#discussion_r1361793823


##########
lucene/core/src/java/org/apache/lucene/index/SortingCodecReader.java:
##########
@@ -468,7 +468,11 @@ public void checkIntegrity() throws IOException {
 
       @Override
       public PointValues getValues(String field) throws IOException {
-        return new SortingPointValues(delegate.getValues(field), docMap);
+        PointValues values = delegate.getValues(field);

Review Comment:
   Thanks for catching, it should not change as file formats should never be 
called on fields whose info say the field is not indexed. I fixed the slow 
composite reader wrapper instead.



-- 
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

Reply via email to