You are viewing a plain text version of this content. The canonical link for it is here.
Posted to dev@lucene.apache.org by GitBox <gi...@apache.org> on 2019/08/21 10:44:11 UTC

[GitHub] [lucene-solr] chenkovsky opened a new pull request #840: SOLR-13524 : Or Stream Evaluator Is Incorrect

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:
users@infra.apache.org


With regards,
Apache Git Services

---------------------------------------------------------------------
To unsubscribe, e-mail: dev-unsubscribe@lucene.apache.org
For additional commands, e-mail: dev-help@lucene.apache.org