LUCENE-7462: Fix buggy advanceExact impl of empty binary doc values.

This commit is contained in:
Adrien Grand 2016-10-26 11:36:23 +02:00
parent 5394d29fca
commit 71c6518456
1 changed files with 1 additions and 1 deletions

View File

@ -45,7 +45,7 @@ public final class DocValues {
@Override
public boolean advanceExact(int target) throws IOException {
doc = target;
return true;
return false;
}
@Override