msokolov commented on code in PR #13779: URL: https://github.com/apache/lucene/pull/13779#discussion_r1765337333
########## lucene/core/src/java/org/apache/lucene/codecs/KnnVectorsWriter.java: ########## @@ -361,33 +385,46 @@ private MergedByteVectorValues(List<ByteVectorValuesSub> subs, MergeState mergeS totalSize += sub.values.size(); } size = totalSize; - docId = -1; } @Override - public byte[] vectorValue() throws IOException { - return current.values.vectorValue(); + public byte[] vectorValue(int ord) throws IOException { + return current.values.vectorValue(current.values.iterator().index()); Review Comment: Maybe we can enhance DocIDMerger by adding random access to it -- 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