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

rdbms - what exactly the undo information lives in oracle? -

bash - How do you programmatically add a bats test? -

clojure - 'get' replacement that throws exception on not found? -