Regression with Multi Field Type

Hi,

I am upgrading from 0.20.6 to 0.90.2
I recreated all indexes and mappings and repopulated.

Now I get this error when querying my retailers :
500 : {"error":"SearchPhaseExecutionException[Failed to execute phase
[query], total failure; shardFailures
{[QR41KruzTL-HEWblL4fTag][staging_retailers][4]:
SearchParseException[[staging_retailers][4]: from[-1],size[-1]: Parse
Failure [Failed to parse source
[{"sort":[{"name.untouched":"asc"}],"filter":{"or":[{"prefix":{"name":"Bam*"}},{"prefix":{"url":"Bam*"}}]}}]]];
nested: SearchParseException[[staging_retailers][4]: from[-1],size[-1]:
Parse Failure [No mapping found for [name.untouched] in order to sort on]];
}{[QR41KruzTL-HEWblL4fTag][staging_retailers][0]:
SearchParseException[[staging_retailers][0]: from[-1],size[-1]: Parse
Failure [Failed to parse source
[{"sort":[{"name.untouched":"asc"}],"filter":{"or":[{"prefix":{"name":"Bam*"}},{"prefix":{"url":"Bam*"}}]}}]]];
nested: SearchParseException[[staging_retailers][0]: from[-1],size[-1]:
Parse Failure [No mapping found for [name.untouched] in order to sort on]];
}]","status":500}

However my mapping is present and seems fine.

{
"staging_retailers" : {
"retailer" : {
"properties" : {
"id" : {
"type" : "string",
"index" : "not_analyzed",
"omit_norms" : true,
"index_options" : "docs"
},
"name" : {
"type" : "multi_field",
"fields" : {
"name" : {
"type" : "string"
},
"untouched" : {
"type" : "string",
"index" : "not_analyzed",
"omit_norms" : true,
"index_options" : "docs",
"include_in_all" : false
}
}
},
"state" : {
"type" : "string",
"index" : "not_analyzed",
"omit_norms" : true,
"index_options" : "docs"
},
"url" : {
"type" : "string"
}
}
}
}
}

Am I missing something? Or Is it a regression in ES?
Thanks,

Miguel

--
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.
For more options, visit https://groups.google.com/groups/opt_out.