mirror of https://github.com/apache/lucene.git
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:
parent
f6185b71a7
commit
22da31152c
|
@ -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
|
||||
|
||||
----------------------
|
||||
|
|
|
@ -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>
|
||||
|
||||
|
|
|
@ -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>
|
||||
|
||||
|
|
Loading…
Reference in New Issue