LUCENE-5843: this is a bug not a feature!

git-svn-id: https://svn.apache.org/repos/asf/lucene/dev/trunk@1614424 13f79535-47bb-0310-9956-ffa450edef68
This commit is contained in:
Michael McCandless 2014-07-29 17:22:18 +00:00
parent ac511e76fe
commit 818e68b61b
1 changed files with 6 additions and 6 deletions

View File

@ -134,12 +134,6 @@ New Features
of footer, this can detect some forms of corruption such as truncation.
(Robert Muir)
* LUCENE-5843: Added IndexWriter.MAX_DOCS which is the maximum number
of documents allowed in a single index, and any operations that add
documents will now throw IllegalStateException if the max count
would be exceeded, instead of silently creating an unusable
index. (Mike McCandless)
API Changes
* LUCENE-5752: Simplified Automaton API to be immutable. (Mike McCandless)
@ -221,6 +215,12 @@ Bug Fixes
Integer.MAX_VALUE - 8 for the maximum array size. (Robert Muir,
Mike McCandless)
* LUCENE-5843: Added IndexWriter.MAX_DOCS which is the maximum number
of documents allowed in a single index, and any operations that add
documents will now throw IllegalStateException if the max count
would be exceeded, instead of silently creating an unusable
index. (Mike McCandless)
Test Framework
* LUCENE-5786: Unflushed/ truncated events file (hung testing subprocess).