expani commented on code in PR #14511: URL: https://github.com/apache/lucene/pull/14511#discussion_r2059897538
########## lucene/core/src/java/org/apache/lucene/codecs/lucene103/Lucene103PostingsReader.java: ########## @@ -1286,14 +1298,11 @@ public long cost() { @Override public int numLevels() { - return indexHasFreq == false || level1LastDocID == NO_MORE_DOCS ? 1 : 2; + return level1LastDocID == NO_MORE_DOCS ? 1 : 2; } @Override public int getDocIdUpTo(int level) { - if (indexHasFreq == false) { - return NO_MORE_DOCS; - } Review Comment: Done ########## lucene/core/src/java/org/apache/lucene/codecs/lucene103/Lucene103PostingsReader.java: ########## @@ -1309,8 +1318,9 @@ public List<Impact> getImpacts(int level) { if (level == 1) { return readImpacts(level1SerializedImpacts, level1Impacts); } + return DUMMY_IMPACTS; } - return DUMMY_IMPACTS; + return NON_COMPETITIVE_IMPACTS; Review Comment: Done -- 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