You are viewing a plain text version of this content. The canonical link for it is here.
Posted to commits@lucene.apache.org by ko...@apache.org on 2011/03/20 16:02:28 UTC

svn commit: r1083460 - in /lucene/dev/branches/branch_3x: ./ lucene/ lucene/contrib/lucli/build.xml solr/ solr/CHANGES.txt solr/build.xml solr/contrib/dataimporthandler/CHANGES.txt

Author: koji
Date: Sun Mar 20 15:02:27 2011
New Revision: 1083460

URL: http://svn.apache.org/viewvc?rev=1083460&view=rev
Log:
move DIH entries in core CHANGES.txt to DIH

Modified:
    lucene/dev/branches/branch_3x/   (props changed)
    lucene/dev/branches/branch_3x/lucene/   (props changed)
    lucene/dev/branches/branch_3x/lucene/contrib/lucli/build.xml   (props changed)
    lucene/dev/branches/branch_3x/solr/   (props changed)
    lucene/dev/branches/branch_3x/solr/CHANGES.txt
    lucene/dev/branches/branch_3x/solr/build.xml   (props changed)
    lucene/dev/branches/branch_3x/solr/contrib/dataimporthandler/CHANGES.txt

Modified: lucene/dev/branches/branch_3x/solr/CHANGES.txt
URL: http://svn.apache.org/viewvc/lucene/dev/branches/branch_3x/solr/CHANGES.txt?rev=1083460&r1=1083459&r2=1083460&view=diff
==============================================================================
--- lucene/dev/branches/branch_3x/solr/CHANGES.txt (original)
+++ lucene/dev/branches/branch_3x/solr/CHANGES.txt Sun Mar 20 15:02:27 2011
@@ -255,7 +255,7 @@ New Features
   Example: q=add($v1,$v2)&v1=mul(popularity,5)&v2=20.0
   (yonik)
 
-* SOLR-2133: Function query parser can now parse multiple coma separated
+* SOLR-2133: Function query parser can now parse multiple comma separated
   value sources.  It also now fails if there is extra unexpected text
   after parsing the functions, instead of silently ignoring it.
   This allows expressions like q=dist(2,vector(1,2),$pt)&pt=3,4   (yonik)
@@ -471,23 +471,11 @@ Bug Fixes
 
 * SOLR-2148: Highlighter doesn't support q.alt. (koji)
 
-* SOLR-1794: Dataimport of CLOB fields fails when getCharacterStream() is 
-  defined in a superclass. (Gunnar Gauslaa Bergem via rmuir)
-
 * SOLR-2180: It was possible for EmbeddedSolrServer to leave searchers
   open if a request threw an exception. (yonik)
 
 * SOLR-2173: Suggester should always rebuild Lookup data if Lookup.load fails. (ab)
 
-* SOLR-2057: DataImportHandler never calls UpdateRequestProcessor.finish()
-  (Drew Farris via koji)
-
-* SOLR-1973: Empty fields in XML update messages confuse DataImportHandler. (koji)
-
-* SOLR-2221: Use StrUtils.parseBool() to get values of boolean options in DIH.
-  true/on/yes (for TRUE) and false/off/no (for FALSE) can be used for sub-options
-  (debug, verbose, synchronous, commit, clean, optimize) for full/delta-import commands. (koji)
-
 * SOLR-2081: BaseResponseWriter.isStreamingDocs causes
   SingleResponseWriter.end to be called 2x 
   (Chris A. Mattmann via hossman) 
@@ -541,11 +529,6 @@ Bug Fixes
 * SOLR-2348: Fix field types to explicitly generate an error if you
   attempt to get a ValueSource for a multiValued field. (hossman)
 
-* SOLR-1191: resolve DataImportHandler deltaQuery column against pk when pk
-  has a prefix (e.g. pk="book.id" deltaQuery="select id from ..."). More
-  useful error reporting when no match found (previously failed with a
-  NullPointerException in log and no clear user feedback). (gthb via yonik)
-
 * SOLR-2380: Distributed faceting could miss values when facet.sort=index
   and when facet.offset was greater than 0. (yonik)
   

Modified: lucene/dev/branches/branch_3x/solr/contrib/dataimporthandler/CHANGES.txt
URL: http://svn.apache.org/viewvc/lucene/dev/branches/branch_3x/solr/contrib/dataimporthandler/CHANGES.txt?rev=1083460&r1=1083459&r2=1083460&view=diff
==============================================================================
--- lucene/dev/branches/branch_3x/solr/contrib/dataimporthandler/CHANGES.txt (original)
+++ lucene/dev/branches/branch_3x/solr/contrib/dataimporthandler/CHANGES.txt Sun Mar 20 15:02:27 2011
@@ -72,12 +72,29 @@ Bug Fixes
 
 * SOLR-1811: formatDate should use the current NOW value always (Sean Timm via noble)
 
+* SOLR-1794: Dataimport of CLOB fields fails when getCharacterStream() is 
+  defined in a superclass. (Gunnar Gauslaa Bergem via rmuir)
+
+* SOLR-2057: DataImportHandler never calls UpdateRequestProcessor.finish()
+  (Drew Farris via koji)
+
+* SOLR-1973: Empty fields in XML update messages confuse DataImportHandler. (koji)
+
+* SOLR-2221: Use StrUtils.parseBool() to get values of boolean options in DIH.
+  true/on/yes (for TRUE) and false/off/no (for FALSE) can be used for sub-options
+  (debug, verbose, synchronous, commit, clean, optimize) for full/delta-import commands. (koji)
+
 * SOLR-2310: getTimeElapsedSince() returns incorrect hour value when the elapse is over 60 hours
   (tom liu via koji)
 
 * SOLR-2252: When a child entity in nested entities is rootEntity="true", delta-import doesn't work.
   (koji)
 
+* SOLR-1191: resolve DataImportHandler deltaQuery column against pk when pk
+  has a prefix (e.g. pk="book.id" deltaQuery="select id from ..."). More
+  useful error reporting when no match found (previously failed with a
+  NullPointerException in log and no clear user feedback). (gthb via yonik)
+
 * SOLR-2116: Fix TikaConfig classloader bug in TikaEntityProcessor
   (Martijn van Groningen via hossman)