-
Notifications
You must be signed in to change notification settings - Fork 25.8k
Setting index_analyzer incorrectly sets analyzer #2329
Copy link
Copy link
Closed
Labels
Description
Setting just index_analyzer incorrectly sets analyzer:
curl -XPUT 'http://127.0.0.1:9200/test/?pretty=1' -d '
{
"mappings" : {
"test" : {
"properties" : {
"foo" : {
"index_analyzer" : "whitespace",
"type" : "string"
}
}
}
}
}
'
curl -XGET 'http://127.0.0.1:9200/test/test/_mapping?pretty=1'
# {
# "test" : {
# "properties" : {
# "foo" : {
# "type" : "string",
# "analyzer" : "whitespace"
# }
# }
# }
# }
Reactions are currently unavailable
Metadata
Metadata
Assignees
Labels
Type
Fields
Give feedbackNo fields configured for issues without a type.