-
Notifications
You must be signed in to change notification settings - Fork 24.9k
New issue
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
Wildcard queries should not normalize/remove wildcards in queries #46300
Comments
Pinging @elastic/es-search |
I think we can consider this as a bug. The reserved characters should be excluded when the normalization is applied. As a comparison, the |
thanks Jim. I'll update the labels |
Wildcard queries on keyword fields get normalized, however this normalization step should exclude the two special characters * and ? in order to keep the wildcard query itself intact. Closes elastic#46300
Wildcard queries on keyword fields get normalized, however this normalization step should exclude the two special characters * and ? in order to keep the wildcard query itself intact. Closes #46300
) Wildcard queries on keyword fields get normalized, however this normalization step should exclude the two special characters * and ? in order to keep the wildcard query itself intact. Closes elastic#46300
Wildcard queries should not normalize wildcards from queries
Example scenario where wildcard queries do not exhibit expected behavior:
The resulting input that is provided to the wildcard query removes the
*
.Because of this, the search does not find any matching documents.
I believe this relates to #28894.
The text was updated successfully, but these errors were encountered: