Author: hossman
Date: Wed Feb 18 19:11:13 2009
New Revision: 745615

URL: http://svn.apache.org/viewvc?rev=745615&view=rev
Log:
SOLR-1022 ... fixing bad example of ignored field (should be multiValued=true)

Modified:
    lucene/solr/trunk/CHANGES.txt
    lucene/solr/trunk/example/example-DIH/solr/db/conf/schema.xml
    lucene/solr/trunk/example/solr/conf/schema.xml

Modified: lucene/solr/trunk/CHANGES.txt
URL: 
http://svn.apache.org/viewvc/lucene/solr/trunk/CHANGES.txt?rev=745615&r1=745614&r2=745615&view=diff
==============================================================================
--- lucene/solr/trunk/CHANGES.txt (original)
+++ lucene/solr/trunk/CHANGES.txt Wed Feb 18 19:11:13 2009
@@ -310,6 +310,8 @@
 
 17. Upgraded to Lucene 2.9-dev r742220 (yonik)
 
+18. SOLR-1022: Better "ignored" field in example schema.xml (Peter Wolanin via 
hossman)
+
 Build
 
 ----------------------

Modified: lucene/solr/trunk/example/example-DIH/solr/db/conf/schema.xml
URL: 
http://svn.apache.org/viewvc/lucene/solr/trunk/example/example-DIH/solr/db/conf/schema.xml?rev=745615&r1=745614&r2=745615&view=diff
==============================================================================
--- lucene/solr/trunk/example/example-DIH/solr/db/conf/schema.xml (original)
+++ lucene/solr/trunk/example/example-DIH/solr/db/conf/schema.xml Wed Feb 18 
19:11:13 2009
@@ -318,7 +318,7 @@
         field name or dynamic field, rather than reporting them as an error. 
         alternately, change the type="ignored" to some other type e.g. "text" 
if you want 
         unknown fields indexed and/or stored by default --> 
-   <!--dynamicField name="*" type="ignored" /-->
+   <!--dynamicField name="*" type="ignored" multiValued="true" /-->
    
  </fields>
 

Modified: lucene/solr/trunk/example/solr/conf/schema.xml
URL: 
http://svn.apache.org/viewvc/lucene/solr/trunk/example/solr/conf/schema.xml?rev=745615&r1=745614&r2=745615&view=diff
==============================================================================
--- lucene/solr/trunk/example/solr/conf/schema.xml (original)
+++ lucene/solr/trunk/example/solr/conf/schema.xml Wed Feb 18 19:11:13 2009
@@ -364,7 +364,7 @@
         field name or dynamic field, rather than reporting them as an error. 
         alternately, change the type="ignored" to some other type e.g. "text" 
if you want 
         unknown fields indexed and/or stored by default --> 
-   <!--dynamicField name="*" type="ignored" /-->
+   <!--dynamicField name="*" type="ignored" multiValued="true" /-->
    
  </fields>
 


Reply via email to