File tree Expand file tree Collapse file tree 1 file changed +5
-1
lines changed
server/src/main/java/org/elasticsearch/index/mapper Expand file tree Collapse file tree 1 file changed +5
-1
lines changed Original file line number Diff line number Diff line change 1111
1212import org .elasticsearch .features .FeatureSpecification ;
1313import org .elasticsearch .features .NodeFeature ;
14+ import org .elasticsearch .index .IndexSettings ;
1415import org .elasticsearch .index .codec .vectors .es93 .ES93GenericFlatVectorsFormat ;
1516
1617import java .util .HashSet ;
@@ -111,13 +112,16 @@ public Set<NodeFeature> getTestFeatures() {
111112 BASE64_DENSE_VECTORS ,
112113 FIX_DENSE_VECTOR_WRONG_FIELDS ,
113114 BBQ_DISK_STATS_SUPPORT ,
114- SKIPPERS_ON_UNINDEXED_FIELDS ,
115115 STORED_FIELDS_SPEC_MERGE_BUG
116116 );
117117 if (ES93GenericFlatVectorsFormat .GENERIC_VECTOR_FORMAT .isEnabled ()) {
118118 features = new HashSet <>(features );
119119 features .add (GENERIC_VECTOR_FORMAT );
120120 }
121+ if (IndexSettings .DOC_VALUES_SKIPPER ) {
122+ features = new HashSet <>(features );
123+ features .add (SKIPPERS_ON_UNINDEXED_FIELDS );
124+ }
121125 return features ;
122126 }
123127}
You can’t perform that action at this time.
0 commit comments