You are viewing a plain text version of this content. The canonical link for it is here.
Posted to commits@lucene.apache.org by yo...@apache.org on 2011/03/12 23:27:22 UTC

svn commit: r1081014 - in /lucene/dev/branches/lucene_solr_3_1: ./ lucene/ solr/ solr/example/solr/conf/schema.xml

Author: yonik
Date: Sat Mar 12 22:27:22 2011
New Revision: 1081014

URL: http://svn.apache.org/viewvc?rev=1081014&view=rev
Log:
example: add a multi-valued text field

Modified:
    lucene/dev/branches/lucene_solr_3_1/   (props changed)
    lucene/dev/branches/lucene_solr_3_1/lucene/   (props changed)
    lucene/dev/branches/lucene_solr_3_1/solr/   (props changed)
    lucene/dev/branches/lucene_solr_3_1/solr/example/solr/conf/schema.xml

Modified: lucene/dev/branches/lucene_solr_3_1/solr/example/solr/conf/schema.xml
URL: http://svn.apache.org/viewvc/lucene/dev/branches/lucene_solr_3_1/solr/example/solr/conf/schema.xml?rev=1081014&r1=1081013&r2=1081014&view=diff
==============================================================================
--- lucene/dev/branches/lucene_solr_3_1/solr/example/solr/conf/schema.xml (original)
+++ lucene/dev/branches/lucene_solr_3_1/solr/example/solr/conf/schema.xml Sat Mar 12 22:27:22 2011
@@ -523,6 +523,7 @@
    <dynamicField name="*_s"  type="string"  indexed="true"  stored="true"/>
    <dynamicField name="*_l"  type="long"   indexed="true"  stored="true"/>
    <dynamicField name="*_t"  type="text"    indexed="true"  stored="true"/>
+   <dynamicField name="*_txt" type="text"    indexed="true"  stored="true" multiValued="true"/>
    <dynamicField name="*_b"  type="boolean" indexed="true"  stored="true"/>
    <dynamicField name="*_f"  type="float"  indexed="true"  stored="true"/>
    <dynamicField name="*_d"  type="double" indexed="true"  stored="true"/>