Is there a problem with elasticsearch query_string?

Hi
i am running a search with accent "chín*" i am using query string but i don't get any hits
if i use prefix then i get the correct number of results
is there any problem with query string and it is unable to handle search with accent?

here are both search json
{
"query": {
"query_string": {
"query": "chín*",
"fields": [],
"use_dis_max": false,
"default_operator": "and",
"allow_leading_wildcard": false
}
}
}

{
"query": {
"multi_match": {
"query": "ch?n*",
"fields": [],
"type": "phrase_prefix",
"max_expansions": 100,
"tie_breaker": 0,
"zero_terms_query": "NONE"
}
}
}

I think it's a concern about analyzers but might be incorrect.
You should provide a full curl/SENSE recreation and GIST it.

David

Le 30 oct. 2014 à 23:59, sulemanmubarik sulemanmubarik@gmail.com a écrit :

Hi
i am running a search with accent "chín*" i am using query string but i
don't get any hits
if i use prefix then i get the correct number of results
is there any problem with query string and it is unable to handle search
with accent?

here are both search json
{
"query": {
"query_string": {
"query": "chín*",
"fields": ,
"use_dis_max": false,
"default_operator": "and",
"allow_leading_wildcard": false
}
}
}

{
"query": {
"multi_match": {
"query": "ch?n*",
"fields": ,
"type": "phrase_prefix",
"max_expansions": 100,
"tie_breaker": 0,
"zero_terms_query": "NONE"
}
}
}

--
View this message in context: http://elasticsearch-users.115913.n3.nabble.com/Is-there-a-problem-with-elasticsearch-query-string-tp4065560.html
Sent from the Elasticsearch Users mailing list archive at Nabble.com.

--
You received this message because you are subscribed to the Google Groups "elasticsearch" group.
To unsubscribe from this group and stop receiving emails from it, send an email to elasticsearch+unsubscribe@googlegroups.com.
To view this discussion on the web visit https://groups.google.com/d/msgid/elasticsearch/1414709973641-4065560.post%40n3.nabble.com.
For more options, visit https://groups.google.com/d/optout.

--
You received this message because you are subscribed to the Google Groups "elasticsearch" group.
To unsubscribe from this group and stop receiving emails from it, send an email to elasticsearch+unsubscribe@googlegroups.com.
To view this discussion on the web visit https://groups.google.com/d/msgid/elasticsearch/4C4821F1-B4C2-4666-9575-429F290EDEDE%40pilato.fr.
For more options, visit https://groups.google.com/d/optout.