easyice commented on code in PR #12748: URL: https://github.com/apache/lucene/pull/12748#discussion_r1381794470
########## lucene/core/src/java/org/apache/lucene/codecs/lucene90/blocktree/Lucene90BlockTreeTermsReader.java: ########## @@ -86,8 +86,11 @@ public final class Lucene90BlockTreeTermsReader extends FieldsProducer { */ public static final int VERSION_MSB_VLONG_OUTPUT = 1; + /** Version that store continuous arcs label as range in FST. */ + public static final int VERSION_ARCS_CONTINUOUS = 2; + /** Current terms format. */ - public static final int VERSION_CURRENT = VERSION_MSB_VLONG_OUTPUT; + public static final int VERSION_CURRENT = VERSION_ARCS_CONTINUOUS; Review Comment: You are right, we are backward compatible -- 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