You are viewing a plain text version of this content. The canonical link for it is here.
Posted to commits@lucene.apache.org by sa...@apache.org on 2015/04/04 02:56:20 UTC

svn commit: r1671236 - in /lucene/dev/branches/lucene_solr_5_1: ./ solr/ solr/CHANGES.txt solr/server/ solr/server/solr/configsets/data_driven_schema_configs/conf/managed-schema solr/server/solr/configsets/data_driven_schema_configs/conf/solrconfig.xml

Author: sarowe
Date: Sat Apr  4 00:56:20 2015
New Revision: 1671236

URL: http://svn.apache.org/r1671236
Log:
SOLR-7290: Rename catchall _text field in data_driven_schema_configs to _text_ (merged trunk r1671234)

Modified:
    lucene/dev/branches/lucene_solr_5_1/   (props changed)
    lucene/dev/branches/lucene_solr_5_1/solr/   (props changed)
    lucene/dev/branches/lucene_solr_5_1/solr/CHANGES.txt   (contents, props changed)
    lucene/dev/branches/lucene_solr_5_1/solr/server/   (props changed)
    lucene/dev/branches/lucene_solr_5_1/solr/server/solr/configsets/data_driven_schema_configs/conf/managed-schema
    lucene/dev/branches/lucene_solr_5_1/solr/server/solr/configsets/data_driven_schema_configs/conf/solrconfig.xml

Modified: lucene/dev/branches/lucene_solr_5_1/solr/CHANGES.txt
URL: http://svn.apache.org/viewvc/lucene/dev/branches/lucene_solr_5_1/solr/CHANGES.txt?rev=1671236&r1=1671235&r2=1671236&view=diff
==============================================================================
--- lucene/dev/branches/lucene_solr_5_1/solr/CHANGES.txt (original)
+++ lucene/dev/branches/lucene_solr_5_1/solr/CHANGES.txt Sat Apr  4 00:56:20 2015
@@ -40,7 +40,9 @@ Upgrading from Solr 5.0
   
 * Tika's runtime dependency of 'jhighlight' was removed as the latter was found to 
   contain some LGPL-only code. Until that's resolved by Tika, you can download the
-  .jar yourself and place it under contrib/extraction/lib.  
+  .jar yourself and place it under contrib/extraction/lib.
+    
+* The _text catch-all field in data_driven_schema_configs has been renamed to _text_.
 
 Detailed Change List
 ----------------------
@@ -395,6 +397,9 @@ Other Changes
 * SOLR-7202: Remove deprecated string action types in Overseer and OverseerCollectionProcessor -
   "deletecollection", "createcollection", "reloadcollection", "removecollection", "removeshard".
   (Varun Thacker, shalin)
+  
+* SOLR-7290: Rename catchall _text field in data_driven_schema_configs
+  to _text_ (Steve Rowe) 
 
 ==================  5.0.0 ==================
 

Modified: lucene/dev/branches/lucene_solr_5_1/solr/server/solr/configsets/data_driven_schema_configs/conf/managed-schema
URL: http://svn.apache.org/viewvc/lucene/dev/branches/lucene_solr_5_1/solr/server/solr/configsets/data_driven_schema_configs/conf/managed-schema?rev=1671236&r1=1671235&r2=1671236&view=diff
==============================================================================
--- lucene/dev/branches/lucene_solr_5_1/solr/server/solr/configsets/data_driven_schema_configs/conf/managed-schema (original)
+++ lucene/dev/branches/lucene_solr_5_1/solr/server/solr/configsets/data_driven_schema_configs/conf/managed-schema Sat Apr  4 00:56:20 2015
@@ -106,20 +106,20 @@
    -->
 
     <!-- In this data_driven_schema_configs configset, only three fields are pre-declared: 
-         id, _version_, and _text.  All other fields will be type guessed and added via the
+         id, _version_, and _text_.  All other fields will be type guessed and added via the
          "add-unknown-fields-to-the-schema" update request processor chain declared 
          in solrconfig.xml.
          
          Note that many dynamic fields are also defined - you can used them to specify a 
          field's type via field naming conventions - see below.
   
-  WARNING: The _text catch-all field will significantly increase your index size.
+  WARNING: The _text_ catch-all field will significantly increase your index size.
            If you don't need it, consider removing it and the corresponding copyField directive.
       -->
     <field name="id" type="string" indexed="true" stored="true" required="true" multiValued="false" />
     <field name="_version_" type="long" indexed="true" stored="true"/>
-    <field name="_text" type="text_general" indexed="true" stored="false" multiValued="true"/>
-    <copyField source="*" dest="_text"/>
+    <field name="_text_" type="text_general" indexed="true" stored="false" multiValued="true"/>
+    <copyField source="*" dest="_text_"/>
 
 
     <!-- Dynamic field definitions allow using convention over configuration

Modified: lucene/dev/branches/lucene_solr_5_1/solr/server/solr/configsets/data_driven_schema_configs/conf/solrconfig.xml
URL: http://svn.apache.org/viewvc/lucene/dev/branches/lucene_solr_5_1/solr/server/solr/configsets/data_driven_schema_configs/conf/solrconfig.xml?rev=1671236&r1=1671235&r2=1671236&view=diff
==============================================================================
--- lucene/dev/branches/lucene_solr_5_1/solr/server/solr/configsets/data_driven_schema_configs/conf/solrconfig.xml (original)
+++ lucene/dev/branches/lucene_solr_5_1/solr/server/solr/configsets/data_driven_schema_configs/conf/solrconfig.xml Sat Apr  4 00:56:20 2015
@@ -861,7 +861,7 @@
 
   <initParams path="/update/**,/query,/select,/tvrh,/elevate,/spell,/browse">
     <lst name="defaults">
-      <str name="df">_text</str>
+      <str name="df">_text_</str>
     </lst>
   </initParams>
 
@@ -882,7 +882,7 @@
     <lst name="defaults">
       <str name="lowernames">true</str>
       <str name="fmap.meta">ignored_</str>
-      <str name="fmap.content">_text</str>
+      <str name="fmap.content">_text_</str>
     </lst>
   </requestHandler>