On 5/4/07, Apache Wiki <[EMAIL PROTECTED]> wrote:
------------------------------------------------------------------------------
<requestParsers enableRemoteStreaming="false" multipartUploadLimitInKB="2048"
/>
}}}
+ * audit schema.xml duplicate field definition behavior. As is {{
+ <fieldType name="aaa" ... />
+ <fieldType name="aaa" ... />
+
+ <field name="aaa" ... />
+ <field name="aaa" ... />
+
+ <dynamicField name="aaa_*" ... />
+ <dynamicField name="aaa_*" ... />
+ }} quietly continues -- tossing out the first definition. This should add a
severe error and optionally abort (using SOLR-179)
+
Your description is clear, but not the example. Is it a problem if a
fieldType and field have the same name, or just two fields? Also, the
field/dyn field definition seems okay (because of the underscore).
Perhaps we should enforce * to match something (like .+)?
-MIke