You are viewing a plain text version of this content. The canonical link for it is here.
Posted to commits@lucene.apache.org by mi...@apache.org on 2014/07/29 19:22:19 UTC

svn commit: r1614424 - /lucene/dev/trunk/lucene/CHANGES.txt

Author: mikemccand
Date: Tue Jul 29 17:22:18 2014
New Revision: 1614424

URL: http://svn.apache.org/r1614424
Log:
LUCENE-5843: this is a bug not a feature!

Modified:
    lucene/dev/trunk/lucene/CHANGES.txt

Modified: lucene/dev/trunk/lucene/CHANGES.txt
URL: http://svn.apache.org/viewvc/lucene/dev/trunk/lucene/CHANGES.txt?rev=1614424&r1=1614423&r2=1614424&view=diff
==============================================================================
--- lucene/dev/trunk/lucene/CHANGES.txt (original)
+++ lucene/dev/trunk/lucene/CHANGES.txt Tue Jul 29 17:22:18 2014
@@ -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).