Skip to content

Commit 09768fc

Browse files
committed
change version
1 parent 5890085 commit 09768fc

File tree

3 files changed

+5
-5
lines changed

3 files changed

+5
-5
lines changed

lucene/CHANGES.txt

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -31,6 +31,9 @@ API Changes
3131

3232
* GITHUB#14844: Change IndexInput.updateReadAdvice to take an IOContext instead (Simon Cooper)
3333

34+
* GITHUB#12980: Make FSTPostingsFormat to build FST off-heap. This PostingsFormat will now
35+
create 2 FST files (tfp.meta and tfp.data) instead of a single one. (Anh Dung Bui)
36+
3437
New Features
3538
---------------------
3639
* GITHUB#14097: Binary partitioning merge policy over float-valued vector field. (Mike Sokolov)
@@ -780,9 +783,6 @@ API Changes
780783

781784
* GITHUB#12855: Remove deprecated DrillSideways#createDrillDownFacetsCollector extension method. (Greg Miller)
782785

783-
* GITHUB#12980: Make FSTPostingsFormat to build FST off-heap. This PostingsFormat will now
784-
create 2 FST files (tfp.meta and tfp.data) instead of a single one. (Anh Dung Bui)
785-
786786
* GITHUB#12875: Ensure token position is always increased in PathHierarchyTokenizer and ReversePathHierarchyTokenizer
787787
and resulting tokens do not overlap. (Michael Froh, Lukáš Vlček)
788788

lucene/codecs/src/java/org/apache/lucene/codecs/memory/FSTPostingsFormat.java

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -31,7 +31,7 @@
3131
/** FST term dict + Lucene99PBF */
3232
public final class FSTPostingsFormat extends PostingsFormat {
3333
public FSTPostingsFormat() {
34-
super("FST99");
34+
super("FST110");
3535
}
3636

3737
@Override

lucene/codecs/src/java/org/apache/lucene/codecs/memory/FSTTermsWriter.java

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -206,7 +206,7 @@ public void close() throws IOException {
206206
if (metaOut != null) {
207207
assert dataOut != null;
208208
try (IndexOutput _ = metaOut;
209-
IndexOutput __ = dataOut;
209+
IndexOutput _ = dataOut;
210210
postingsWriter) { // write field summary
211211
final long dirStart = metaOut.getFilePointer();
212212

0 commit comments

Comments
 (0)