We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 0ce5679 commit 46bd54dCopy full SHA for 46bd54d
x-pack/plugin/core/src/main/java/org/elasticsearch/xpack/core/XPackFeatures.java
@@ -12,6 +12,8 @@
12
13
import java.util.Set;
14
15
+import static org.elasticsearch.index.mapper.vectors.SparseVectorFieldMapper.SPARSE_VECTOR_INDEX_OPTIONS_FEATURE;
16
+
17
/**
18
* Provides the XPack features that this version of the code supports
19
*/
@@ -20,4 +22,9 @@ public class XPackFeatures implements FeatureSpecification {
20
22
public Set<NodeFeature> getFeatures() {
21
23
return Set.of();
24
}
25
26
+ @Override
27
+ public Set<NodeFeature> getTestFeatures() {
28
+ return Set.of(SPARSE_VECTOR_INDEX_OPTIONS_FEATURE);
29
+ }
30
0 commit comments