solrj - Solr 4.10 returning SolrDocument instances with empty map when dynamic fields are requested -


i upgraded solr 4.9 4.10. @ point in code want return values dynamic fields. if this:

    solrquery query = new solrquery();     query.addfield("code");     query.addfield("name"); 

it returns right values in fields ('code' , 'name').

if this:

    solrquery query = new solrquery();     query.addfield("code");     query.addfield("name");     query.addfield("*_prop"); 

all fields ,including code , name, null.

is there trick missed when moving 4.10?

it bug in solr 4.10.0. fixed per https://issues.apache.org/jira/browse/solr-6501


Comments

Popular posts from this blog

javascript - RequestAnimationFrame not working when exiting fullscreen switching space on Safari -

jsf - How to ajax update an item in the footer of a PrimeFaces dataTable? -

django - CSRF verification failed. Request aborted. CSRF cookie not set -