Done https://issues.apache.org/jira/browse/SOLR-2824
On 12-10-2011 0:47, Chris Hostetter wrote:
: I have the following query : /core1/select?q=*:*&fq={!join from=id to=childIds fromIndex=core2}specials:1&fl=id,name ... : org.apache.solr.search.JoinQParserPlugin$1.parse(JoinQParserPlugin.java:60) : the parse is called for the filterquery on the main core (core1). Not the : core of the 'fromIndex' (core2) : : Should this work? Am I doing something wrong? Or do the different cores have : to have the same schema? I'm not sure if it was designed with the expectation that the schema's would be the same -- but it certianly seems like either a bug or really odd limitation we should improve on. by all means, please open a Jira issue for this ... skimming hte code i think we just need to ask the "other" SolrCore for a the QParser to use when parsing the query -- but that will likely require constructing a LocalSolrQueryRequest object that wraps the existing params. -Hoss