File tree Expand file tree Collapse file tree 4 files changed +7
-6
lines changed
rest-api-spec/src/yamlRestTest/resources/rest-api-spec/test/indices.create
server/src/main/java/org/elasticsearch/index/mapper Expand file tree Collapse file tree 4 files changed +7
-6
lines changed Original file line number Diff line number Diff line change @@ -160,9 +160,6 @@ tests:
160
160
- class : org.elasticsearch.xpack.ml.integration.MlJobIT
161
161
method : testDeleteJobAsync
162
162
issue : https://github.com/elastic/elasticsearch/issues/112212
163
- - class : org.elasticsearch.backwards.MixedClusterClientYamlTestSuiteIT
164
- method : test {p0=indices.create/20_synthetic_source/stored field under object with store_array_source}
165
- issue : https://github.com/elastic/elasticsearch/issues/112264
166
163
- class : org.elasticsearch.search.query.ScriptScoreQueryTests
167
164
method : testScriptTermStatsAvailable
168
165
issue : https://github.com/elastic/elasticsearch/issues/112278
Original file line number Diff line number Diff line change @@ -1342,8 +1342,8 @@ subobjects auto:
1342
1342
# 112156
1343
1343
stored field under object with store_array_source :
1344
1344
- requires :
1345
- cluster_features : ["mapper.track_ignored_source "]
1346
- reason : requires tracking ignored source
1345
+ cluster_features : ["mapper.source.synthetic_source_stored_fields_advance_fix "]
1346
+ reason : requires bug fix to be implemented
1347
1347
1348
1348
- do :
1349
1349
indices.create :
Original file line number Diff line number Diff line change @@ -32,7 +32,8 @@ public Set<NodeFeature> getFeatures() {
32
32
IndexModeFieldMapper .QUERYING_INDEX_MODE ,
33
33
NodeMappingStats .SEGMENT_LEVEL_FIELDS_STATS ,
34
34
BooleanFieldMapper .BOOLEAN_DIMENSION ,
35
- ObjectMapper .SUBOBJECTS_AUTO
35
+ ObjectMapper .SUBOBJECTS_AUTO ,
36
+ SourceFieldMapper .SYNTHETIC_SOURCE_STORED_FIELDS_ADVANCE_FIX
36
37
);
37
38
}
38
39
}
Original file line number Diff line number Diff line change 38
38
39
39
public class SourceFieldMapper extends MetadataFieldMapper {
40
40
public static final NodeFeature SYNTHETIC_SOURCE_FALLBACK = new NodeFeature ("mapper.source.synthetic_source_fallback" );
41
+ public static final NodeFeature SYNTHETIC_SOURCE_STORED_FIELDS_ADVANCE_FIX = new NodeFeature (
42
+ "mapper.source.synthetic_source_stored_fields_advance_fix"
43
+ );
41
44
42
45
public static final String NAME = "_source" ;
43
46
public static final String RECOVERY_SOURCE_NAME = "_recovery_source" ;
You can’t perform that action at this time.
0 commit comments