Skip to content

Commit 8287e5d

Browse files
committed
Add test
1 parent 58e7dd6 commit 8287e5d

File tree

2 files changed

+513
-1
lines changed

2 files changed

+513
-1
lines changed

server/src/main/java/org/elasticsearch/index/mapper/MapperFeatures.java

Lines changed: 3 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -51,6 +51,7 @@ public class MapperFeatures implements FeatureSpecification {
5151
static final NodeFeature PATTERN_TEXT = new NodeFeature("mapper.patterned_text");
5252
static final NodeFeature IGNORED_SOURCE_FIELDS_PER_ENTRY = new NodeFeature("mapper.ignored_source_fields_per_entry");
5353
public static final NodeFeature MULTI_FIELD_UNICODE_OPTIMISATION_FIX = new NodeFeature("mapper.multi_field.unicode_optimisation_fix");
54+
static final NodeFeature PROVIDE_INDEX_SORT_SETTING_DEFAULTS = new NodeFeature("mapper.provide_index_sort_setting_defaults");
5455

5556
@Override
5657
public Set<NodeFeature> getTestFeatures() {
@@ -87,7 +88,8 @@ public Set<NodeFeature> getTestFeatures() {
8788
PATTERN_TEXT,
8889
IGNORED_SOURCE_FIELDS_PER_ENTRY,
8990
MULTI_FIELD_UNICODE_OPTIMISATION_FIX,
90-
MATCH_ONLY_TEXT_BLOCK_LOADER_FIX
91+
MATCH_ONLY_TEXT_BLOCK_LOADER_FIX,
92+
PROVIDE_INDEX_SORT_SETTING_DEFAULTS
9193
);
9294
}
9395
}

0 commit comments

Comments
 (0)