We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Describe the bug the case_insensitive parameter for wildcard query does not work.
case_insensitive
wildcard
To Reproduce Steps to reproduce the behavior:
create index:
PUT /index/_mapping { "properties" : { "field": { "type": "text" } } }
post a document: POST index/_doc/ {"field" : "lowercase text"}
POST index/_doc/ {"field" : "lowercase text"}
query with wildcard case sensitivity:
GET index/_search { "query" : { "wildcard": { "field": { "value": "Text", "case_insensitive": false } } }
Expected behavior No hits should be returned in the above example, but because the standard analyzer is used wildcard query always normalizes the wildcard pattern.
The text was updated successfully, but these errors were encountered:
Successfully merging a pull request may close this issue.
Describe the bug
the
case_insensitive
parameter forwildcard
query does not work.To Reproduce
Steps to reproduce the behavior:
create index:
post a document:
POST index/_doc/ {"field" : "lowercase text"}
query with wildcard case sensitivity:
Expected behavior
No hits should be returned in the above example, but because the standard analyzer is used
wildcard
query always normalizes the wildcard pattern.The text was updated successfully, but these errors were encountered: