-
Type: Improvement
-
Status: Resolved
-
Priority: Minor
-
Resolution: Won't Do
-
Affects Version/s: 7.10
-
Fix Version/s: None
-
Component/s: Elasticsearch
Steps to reproduce:
- create 2 documents whose titles are retroviseur and retroviseurs
- use the quick search to find these documents by using different keywords
- retroviseur => it returns both documents (as expected)
- retroviseurs => it returns both documents (as expected)
- retro => it returns both documents (as expected)
- rétroviseur => it returns both documents (as expected)
- rétroviseurs => it returns both documents (as expected)
- rétro => it returns nothing which is not expected
The conclusion of these tests if that the stemming does not work when the keyword contains an accentued character, but it still works if the complete word is provided, and the plural is correctly handled (thanks to the use of match_phrase_prefix operator).
It would be really nice if the quick search using accentued characters could work