I'm using Solr 1.4 with the standard request handler and attempting to apply a negative fq for all requests via the "appends" elements but its not being applied. Is this an intended limitation? I looked in JIRA for an existing issue but nothing jumped out.
Works fine:
<lst name="appends">
<str name="fq">tag:test</str>
</lst>
Does not work:
<lst name="appends">
<str name="fq">-tag:test</str>
</lst>
