ChrisHegarty commented on code in PR #16554: URL: https://github.com/apache/lucene/pull/16554#discussion_r3855108353
########## lucene/core/src/java/org/apache/lucene/index/SegmentInfos.java: ########## @@ -118,7 +126,10 @@ public final class SegmentInfos implements Cloneable, Iterable<SegmentCommitInfo /** The version that recorded SegmentCommitInfo IDs */ public static final int VERSION_86 = 10; - static final int VERSION_CURRENT = VERSION_86; + /** The version that records per-field incremental doc-values overlay generations. */ + public static final int VERSION_10_6 = 11; Review Comment: No issue here, but for the main branch, maybe we can rename the constant field, from VERSION_11 to VERSION_10_6 - after this PR is merged? -- 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: [email protected] For queries about this service, please contact Infrastructure at: [email protected] --------------------------------------------------------------------- To unsubscribe, e-mail: [email protected] For additional commands, e-mail: [email protected]
