mirror of
https://github.com/apache/lucene.git
synced 2025-02-06 10:08:58 +00:00
LUCENE-3718: fix Lucene40PostingsReader.linearScan() to set its doc state also when refill()ing.
git-svn-id: https://svn.apache.org/repos/asf/lucene/dev/trunk@1235190 13f79535-47bb-0310-9956-ffa450edef68
This commit is contained in:
parent
35a73d5f55
commit
0aad3d64ad
@ -521,7 +521,7 @@ public class Lucene40PostingsReader extends PostingsReaderBase {
|
||||
return doc = docs[i];
|
||||
}
|
||||
}
|
||||
return refill();
|
||||
return doc = refill();
|
||||
}
|
||||
|
||||
@Override
|
||||
@ -604,7 +604,7 @@ public class Lucene40PostingsReader extends PostingsReaderBase {
|
||||
return doc = docs[i];
|
||||
}
|
||||
}
|
||||
return refill();
|
||||
return doc = refill();
|
||||
}
|
||||
|
||||
@Override
|
||||
|
Loading…
x
Reference in New Issue
Block a user