Hello, all ... According to http://wiki.apache.org/solr/FunctionQuery/#What_is_a_Function.3F, it is possible under Solr 4.0 to perform parameter substitutions within function queries.
However, I can't get the syntax provided in the documentation there to work *at all* with Solr 4.0 out of the box: the only location at which function queries can be specified, it seems, is in the 'fl' parameter. And attempts at parameter substitutions here fail. Using (haphazardly guessed) syntax like select?q=*:*&fl=*, test_id:if(exists(employee), employee_id, socialsecurity_id), boost_id:sum($test_id, 10)&wt=xml results in the following error Error parsing fieldname: Missing param test_id while parsing function 'sum($test_id, 10)' Right now I'm entertaining the following hypotheses: (i) I'm somehow borking the syntax, probably in an embarrassingly obvious way (ii) param substitutions of this type work with the syntax given in the wiki, but not with the standard query handler (iii) the wiki documentation is an artefact of development-in-progress for a feature that was subsequently dropped Can anyone on the list shed any light on this? Thanks, Tim