File tree Expand file tree Collapse file tree 2 files changed +3
-1
lines changed
server/src/main/java/org/elasticsearch/index Expand file tree Collapse file tree 2 files changed +3
-1
lines changed Original file line number Diff line number Diff line change @@ -137,6 +137,7 @@ private static Version parseUnchecked(String version) {
137137 public static final IndexVersion USE_SYNTHETIC_SOURCE_FOR_RECOVERY_BY_DEFAULT_BACKPORT = def (8_526_0_00 , parseUnchecked ("9.12.1" ));
138138 public static final IndexVersion SYNTHETIC_SOURCE_STORE_ARRAYS_NATIVELY_KEYWORD_BACKPORT_8_X = def (8_527_0_00 , Version .LUCENE_9_12_1 );
139139 public static final IndexVersion SYNTHETIC_SOURCE_STORE_ARRAYS_NATIVELY_NUMBER_BACKPORT_8_X = def (8_528_0_00 , Version .LUCENE_9_12_1 );
140+ public static final IndexVersion SYNTHETIC_SOURCE_STORE_ARRAYS_NATIVELY_BOOLEAN_BACKPORT_8_X = def (8_529_0_00 , Version .LUCENE_9_12_1 );
140141 public static final IndexVersion UPGRADE_TO_LUCENE_10_0_0 = def (9_000_0_00 , Version .LUCENE_10_0_0 );
141142 public static final IndexVersion LOGSDB_DEFAULT_IGNORE_DYNAMIC_BEYOND_LIMIT = def (9_001_0_00 , Version .LUCENE_10_0_0 );
142143 public static final IndexVersion TIME_BASED_K_ORDERED_DOC_ID = def (9_002_0_00 , Version .LUCENE_10_0_0 );
Original file line number Diff line number Diff line change @@ -186,7 +186,8 @@ public BooleanFieldMapper build(MapperBuilderContext context) {
186186 stored .getValue (),
187187 this ,
188188 indexCreatedVersion ,
189- IndexVersions .SYNTHETIC_SOURCE_STORE_ARRAYS_NATIVELY_BOOLEAN
189+ IndexVersions .SYNTHETIC_SOURCE_STORE_ARRAYS_NATIVELY_BOOLEAN ,
190+ IndexVersions .SYNTHETIC_SOURCE_STORE_ARRAYS_NATIVELY_BOOLEAN_BACKPORT_8_X
190191 );
191192 return new BooleanFieldMapper (
192193 leafName (),
You can’t perform that action at this time.
0 commit comments