Syntax parsing bug..Parenthesis around field and term produce different results
-------------------------------------------------------------------------------
Key: SOLR-2209
URL: https://issues.apache.org/jira/browse/SOLR-2209
Project: Solr
Issue Type: Bug
Components: search
Affects Versions: 1.4.1
Reporter: Stephen
Schema:
<field name="id" type="sint" indexed="true" stored="true" required="true" />
<field name="account_id" type="sint" indexed="true" stored="true"
required="true" />
<field name="user_id" type="sint" indexed="true" stored="true" required="false"
/>
Indexed documents:
id: 1, UserId: 0, AccountId: 1
id: 2, UserId: 0, AccountId: 1
id: 3, UserId: 1, AccountId: 1
id: 4, UserId: 2, AccountId: 1
id: 5, UserId: 3, AccountId: 1
Query:
account_id: 1 AND -user_id: 0
Results:
Document Ids: 3, 4, 5
Query:
account_id: 1 AND ( -user_id: 0 )
Results:
--No matched documents --
Is this the intended behavior? I seem to recall these types of queries working
in 1.4.0, but I could be wrong.
--
This message is automatically generated by JIRA.
-
You can reply to this email to add a comment to the issue online.
---------------------------------------------------------------------
To unsubscribe, e-mail: [email protected]
For additional commands, e-mail: [email protected]