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 2015/03/27 14:17:40 UTC

svn commit: r1669578 - in /lucene/dev/branches/branch_5x: ./ lucene/ lucene/CHANGES.txt

Author: mikemccand
Date: Fri Mar 27 13:17:40 2015
New Revision: 1669578

URL: http://svn.apache.org/r1669578
Log:
LUCENE-6367: correct CHANGES entry: PrefixQuery already operated in binary term space

Modified:
    lucene/dev/branches/branch_5x/   (props changed)
    lucene/dev/branches/branch_5x/lucene/   (props changed)
    lucene/dev/branches/branch_5x/lucene/CHANGES.txt   (contents, props changed)

Modified: lucene/dev/branches/branch_5x/lucene/CHANGES.txt
URL: http://svn.apache.org/viewvc/lucene/dev/branches/branch_5x/lucene/CHANGES.txt?rev=1669578&r1=1669577&r2=1669578&view=diff
==============================================================================
--- lucene/dev/branches/branch_5x/lucene/CHANGES.txt (original)
+++ lucene/dev/branches/branch_5x/lucene/CHANGES.txt Fri Mar 27 13:17:40 2015
@@ -185,6 +185,9 @@ API Changes
   -> .totalMaxDoc and MergePolicy.OneMerge.totalDocCount ->
   .totalMaxDoc (Adrien Grand, Robert Muir, Mike McCandless)
 
+* LUCENE-6367: PrefixQuery now subclasses AutomatonQuery, removing the
+  specialized PrefixTermsEnum.  (Robert Muir, Mike McCandless)
+
 Other
 
 * LUCENE-6248: Remove unused odd constants from StandardSyntaxParser.jj
@@ -212,11 +215,6 @@ Changes in Runtime Behavior
 * LUCENE-6298: SimpleQueryParser returns an empty query rather than
   null, if e.g. the terms were all stopwords. (Lee Hinman via Robert Muir)
 
-* LUCENE-6367: PrefixQuery now subclasses AutomatonQuery, removing the
-  specialized PrefixTermsEnum.  PrefixQuery now operates in binary
-  term space, meaning any binary term (not just valid UTF-8 terms)
-  are accepted.  (Robert Muir, Mike McCandless)
-
 ======================= Lucene 5.0.0 =======================
 
 New Features