Thank you a lot for your answers! They help me to understand better how query
parser works.
--
View this message in context:
http://lucene.472066.n3.nabble.com/Weird-behaviors-with-not-operators-tp3323065p3335087.html
Sent from the Solr - User mailing list archive at Nabble.com.
Hi all.
I'm crashing into a weird behavior with - operators.
If I execute the query
-text AND -text
I get all expected results (lot), but if I put some parenthesis like
-text AND (-text)
or
(-text) AND (-text)
then I get no results at all. I can't understand why.
Do you have an explanation for this