[ 
https://issues.apache.org/jira/browse/LUCENE-8077?page=com.atlassian.jira.plugin.system.issuetabpanels:comment-tabpanel&focusedCommentId=16298340#comment-16298340
 ] 

ASF subversion and git services commented on LUCENE-8077:
---------------------------------------------------------

Commit b5ad3148358cea4f24abaacadbc9a4ae03f1b7c7 in lucene-solr's branch 
refs/heads/master from [~jpountz]
[ https://git-wip-us.apache.org/repos/asf?p=lucene-solr.git;h=b5ad314 ]

LUCENE-8077: Fixed wrong modulo usage in CheckIndex.


>    Integer remainder modulo 1 problem in 
> /core/src/java/org/apache/lucene/index/CheckIndex.java
> -----------------------------------------------------------------------------------------------
>
>                 Key: LUCENE-8077
>                 URL: https://issues.apache.org/jira/browse/LUCENE-8077
>             Project: Lucene - Core
>          Issue Type: Bug
>          Components: core/index
>    Affects Versions: 7.1
>            Reporter: Xiaoshan Sun
>              Labels: easyfix
>   Original Estimate: 1m
>  Remaining Estimate: 1m
>
> At  /core/src/java/org/apache/lucene/index/CheckIndex.java: 2198 
> The branch condition :
> {code:java}
> (i % 1 == 0)
> {code}
> is always true. 
> Did you mean (exp & 1) or (exp % 2) instead?
> The related code is show below:
> {code:java}
> 2198:        if (i % 1 == 0) {
>           int doc2 = it2.nextDoc();
>           if (doc != doc2) {
>             throw new RuntimeException("dv iterator field=" + field + ": 
> doc=" + doc + " was not found through advance() (got: " + doc2 + ")");
>           }
>           if (it2.docID() != doc) {
>             throw new RuntimeException("dv iterator field=" + field + ": 
> doc=" + doc + " reports wrong doc ID (got: " + it2.docID() + ")");
>           }
>         }
>       }
> {code}



--
This message was sent by Atlassian JIRA
(v6.4.14#64029)

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

Reply via email to