SOLR-1022 ... fixing bad example of ignored field (should be multiValued=true)

git-svn-id: https://svn.apache.org/repos/asf/lucene/solr/trunk@745615 13f79535-47bb-0310-9956-ffa450edef68
This commit is contained in:
Chris M. Hostetter 2009-02-18 19:11:13 +00:00
parent f6185b71a7
commit 22da31152c
3 changed files with 4 additions and 2 deletions

View File

@ -310,6 +310,8 @@ Other Changes
17. Upgraded to Lucene 2.9-dev r742220 (yonik)
18. SOLR-1022: Better "ignored" field in example schema.xml (Peter Wolanin via hossman)
Build
----------------------

View File

@ -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>

View File

@ -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>