iverase commented on code in PR #13563: URL: https://github.com/apache/lucene/pull/13563#discussion_r1681112760
########## lucene/test-framework/src/java/org/apache/lucene/tests/index/AssertingLeafReader.java: ########## @@ -1194,24 +1194,27 @@ public int numLevels() { @Override public int minDocID(int level) { assertThread("Doc values skipper", creationThread); - Objects.checkIndex(level, numLevels()); int minDocID = in.minDocID(level); assert minDocID <= in.maxDocID(level); - if (level > 0) { - assert minDocID <= in.minDocID(level - 1); + if (minDocID != -1 && minDocID != DocIdSetIterator.NO_MORE_DOCS) { + Objects.checkIndex(level, numLevels()); + } + for (int i = 0; i < level; i++) { + assert minDocID >= in.minDocID(i); Review Comment: yes, done and revert changes here -- 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