mirror of https://github.com/apache/lucene.git
LUCENE-5189: add CHANGES
git-svn-id: https://svn.apache.org/repos/asf/lucene/dev/trunk@1537829 13f79535-47bb-0310-9956-ffa450edef68
This commit is contained in:
parent
93cadfea9b
commit
0a34191023
|
@ -131,6 +131,10 @@ New Features
|
|||
* LUCENE-5296: Add DirectDocValuesFormat, which holds all doc values
|
||||
in heap as uncompressed java native arrays. (Mike McCandless)
|
||||
|
||||
* LUCENE-5189: Add IndexWriter.updateNumericDocValues, to update
|
||||
numeric DocValues fields of documents, without re-indexing them.
|
||||
(Shai Erera, Mike McCandless, Robert Muir)
|
||||
|
||||
Bug Fixes
|
||||
|
||||
* LUCENE-4998: Fixed a few places to pass IOContext.READONCE instead
|
||||
|
|
|
@ -75,7 +75,7 @@ public final class SegmentReader extends AtomicReader {
|
|||
|
||||
final FieldInfos fieldInfos;
|
||||
|
||||
private final List<Long> dvGens = new ArrayList<>();
|
||||
private final List<Long> dvGens = new ArrayList<Long>();
|
||||
|
||||
/**
|
||||
* Constructs a new SegmentReader with a new core.
|
||||
|
|
Loading…
Reference in New Issue