mirror of https://github.com/apache/lucene.git
LUCENE-7462: Fix buggy advanceExact impl of empty binary doc values.
This commit is contained in:
parent
5394d29fca
commit
71c6518456
|
@ -45,7 +45,7 @@ public final class DocValues {
|
|||
@Override
|
||||
public boolean advanceExact(int target) throws IOException {
|
||||
doc = target;
|
||||
return true;
|
||||
return false;
|
||||
}
|
||||
|
||||
@Override
|
||||
|
|
Loading…
Reference in New Issue