File tree Expand file tree Collapse file tree 1 file changed +1
-5
lines changed
server/src/main/java/org/elasticsearch/index/mapper Expand file tree Collapse file tree 1 file changed +1
-5
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 ;
1514import org .elasticsearch .index .codec .vectors .es93 .ES93GenericFlatVectorsFormat ;
1615
1716import java .util .HashSet ;
@@ -112,16 +111,13 @@ public Set<NodeFeature> getTestFeatures() {
112111 BASE64_DENSE_VECTORS ,
113112 FIX_DENSE_VECTOR_WRONG_FIELDS ,
114113 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- }
125121 return features ;
126122 }
127123}
You can’t perform that action at this time.
0 commit comments