chenkovsky opened a new pull request #840: SOLR-13524 : Or Stream Evaluator Is 
Incorrect
URL: https://github.com/apache/lucene-solr/pull/840
 
 
   Override the doWork function of OrEvaluator. 
   The implementation of RecursiveBooleanEvaluator(parent of OrEvaluator) is 
   ```java
       for(int idx = 1; idx < values.length; ++idx){
         if(!checker.test(values[idx - 1], values[idx])){
           return false;
         }
       }
       return true;
   ```
   
   Obviously, it's incorrect for Or Expression

----------------------------------------------------------------
This is an automated message from the Apache Git Service.
To respond to the message, please log on to GitHub and use the
URL above to go to the specific comment.
 
For queries about this service, please contact Infrastructure at:
[email protected]


With regards,
Apache Git Services

---------------------------------------------------------------------
To unsubscribe, e-mail: [email protected]
For additional commands, e-mail: [email protected]

Reply via email to