Closed
Description
This issue was inspired by https://discuss.elastic.co/t/term-request-with-normalized-keyword-behave-strangely/91120
At the moment if you run a term query on a text field the terms in your query are not passed through the analyzer for that field and instead are considered as the raw terms to search in the index.
In contrary, for keyword fields, the term text is passed through the normalizer for the field, which seems a bit unexpected to me as I had always considered the term query to be used to run raw un-modified searches and the match query to be used when you wanted to applied analysis to the search terms.