rest-api-spec.test.index.120_field_name.yml Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of rest-api-spec Show documentation
Show all versions of rest-api-spec Show documentation
OpenSearch subproject :rest-api-spec
The newest version!
---
"Index documents with field name containing only dot fail with an IllegalArgumentException":
- skip:
version: " - 2.16.99"
reason: "introduced in 2.17.0"
- do:
indices.create:
index: test_1
- do:
catch: /field name cannot contain only the character \[.\]/
index:
index: test_1
id: 1
body: {
.: bar
}
- do:
catch: /field name cannot contain only the character \[.\]/
index:
index: test_1
id: 1
body: {
..: bar
}
- do:
catch: /field name cannot contain only the character \[.\]/
index:
index: test_1
id: 1
body: {
foo: {
.: bar
}
}
© 2015 - 2024 Weber Informatics LLC | Privacy Policy