File tree Expand file tree Collapse file tree 2 files changed +6
-0
lines changed
rest-api-spec/src/yamlRestTest/resources/rest-api-spec/test/mapping
server/src/main/java/org/elasticsearch/index/mapper Expand file tree Collapse file tree 2 files changed +6
-0
lines changed Original file line number Diff line number Diff line change 11---
22copy_to from object with dynamic strict to dynamic field :
3+ - requires :
4+ cluster_features : ["mapper.copy_to.dynamic_handling"]
5+ reason : requires a fix
6+
37 - do :
48 indices.create :
59 index : test
Original file line number Diff line number Diff line change @@ -29,6 +29,7 @@ public class MapperFeatures implements FeatureSpecification {
2929
3030 public static final NodeFeature META_FETCH_FIELDS_ERROR_CODE_CHANGED = new NodeFeature ("meta_fetch_fields_error_code_changed" );
3131 public static final NodeFeature SPARSE_VECTOR_STORE_SUPPORT = new NodeFeature ("mapper.sparse_vector.store_support" );
32+ public static final NodeFeature DYNAMIC_HANDLING_IN_COPY_TO = new NodeFeature ("mapper.copy_to.dynamic_handling" );
3233
3334 @ Override
3435 public Set <NodeFeature > getTestFeatures () {
@@ -45,6 +46,7 @@ public Set<NodeFeature> getTestFeatures() {
4546 META_FETCH_FIELDS_ERROR_CODE_CHANGED ,
4647 SPARSE_VECTOR_STORE_SUPPORT ,
4748 COUNTED_KEYWORD_SYNTHETIC_SOURCE_NATIVE_SUPPORT ,
49+ DYNAMIC_HANDLING_IN_COPY_TO ,
4850 SourceFieldMapper .SYNTHETIC_RECOVERY_SOURCE ,
4951 ObjectMapper .SUBOBJECTS_FALSE_MAPPING_UPDATE_FIX
5052 );
You can’t perform that action at this time.
0 commit comments