-
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
Support Case Insensitive search for foreign characters in wildcard field type #95120
Comments
Pinging @elastic/es-search (Team:Search) |
Comment from this closed issue:
|
@jypan0115 as you pointed out in #61596 (comment) we don't apply the logic that handles case-insensitivity for codepoints outside the ASCII range. The reason for this currently isn't clear to me, we'd need to do some digging here to check for the reason to do so before removing this limitation, but it makes sense to me that we should also support characters outside the ASCII range if possible. |
@cbuescher Kindly checking any updates here? |
Just for reference, the choice to limit the |
@cbuescher In server/src/main/java/org/elasticsearch/common/lucene/search/AutomatonQueries.java toCaseInsensitiveChar function, by removing the limit of ASCII character |
@cbuescher @javanna Kindly checking any updates here? |
+1 on this one, I was trying to figure out why I was not getting the expected results when using the new case_insensitive setting (on greek strings) until I stumbled upon this issue. |
@cbuescher @javanna Kindly checking any updates here? |
Pinging @elastic/es-search-relevance (Team:Search Relevance) |
Description
In server/src/main/java/org/elasticsearch/common/lucene/search/AutomatonQueries.java toCaseInsensitiveChar function, for now it only works with ASCII characters. May I know why not support foreign characters like Vietnamese? It is not consist with keyword.
The text was updated successfully, but these errors were encountered: