File tree Expand file tree Collapse file tree 2 files changed +6
-2
lines changed
lucene/core/src/java/org/apache/lucene
codecs/lucene90/blocktree Expand file tree Collapse file tree 2 files changed +6
-2
lines changed Original file line number Diff line number Diff line change @@ -86,8 +86,11 @@ public final class Lucene90BlockTreeTermsReader extends FieldsProducer {
8686 */
8787 public static final int VERSION_MSB_VLONG_OUTPUT = 1 ;
8888
89+ /** The version that specialize arc store for continuous label in FST. */
90+ public static final int VERSION_FST_CONTINUOUS_ARCS = 2 ;
91+
8992 /** Current terms format. */
90- public static final int VERSION_CURRENT = VERSION_MSB_VLONG_OUTPUT ;
93+ public static final int VERSION_CURRENT = VERSION_FST_CONTINUOUS_ARCS ;
9194
9295 /** Extension of terms index file */
9396 static final String TERMS_INDEX_EXTENSION = "tip" ;
Original file line number Diff line number Diff line change @@ -107,7 +107,8 @@ public enum INPUT_TYPE {
107107 private static final String FILE_FORMAT_NAME = "FST" ;
108108 private static final int VERSION_START = 6 ;
109109 private static final int VERSION_LITTLE_ENDIAN = 8 ;
110- private static final int VERSION_CURRENT = VERSION_LITTLE_ENDIAN ;
110+ private static final int VERSION_CONTINUOUS_ARCS = 9 ;
111+ private static final int VERSION_CURRENT = VERSION_CONTINUOUS_ARCS ;
111112
112113 // Never serialized; just used to represent the virtual
113114 // final node w/ no arcs:
You can’t perform that action at this time.
0 commit comments