mirror of
https://github.com/elastic/elasticsearch.git
synced 2025-04-24 15:17:30 -04:00
Pass runtime_fields from FieldCapabilitiesRequest to FieldCapabilitiesIndexRequest (#69853)
This commit is contained in:
parent
926dc4f65b
commit
b7fe549a6e
4 changed files with 16 additions and 6 deletions
|
@ -73,6 +73,19 @@
|
|||
- match: {fields.number.double.searchable: true}
|
||||
- match: {fields.number.double.aggregatable: true}
|
||||
|
||||
# make sure runtime_mappings section gets propagated
|
||||
- do:
|
||||
field_caps:
|
||||
index: 'my_remote_cluster:field_caps_index_1'
|
||||
fields: [number]
|
||||
body:
|
||||
runtime_mappings:
|
||||
number:
|
||||
type: keyword
|
||||
- match: {fields.number.keyword.searchable: true}
|
||||
- match: {fields.number.keyword.aggregatable: true}
|
||||
- match: {fields.number.keyword.type: keyword}
|
||||
|
||||
---
|
||||
"Get field caps from remote cluster with index filter":
|
||||
- skip:
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue