I am trying to copy some dynamic fields to check spelling. However. The following are the relevant fields from schema.xml:
<dynamicField name="*_text_fr" stored="false" type="text_fr" multiValued="true" indexed="true"/>
<dynamicField name="*_text_frs" stored="true" type="text_fr" multiValued="true" indexed="true"/>
<dynamicField name="*_text_frms" stored="true" type="text_fr" multiValued="true" indexed="true"/>
It does not copy anything with:
<copyField source="*_text_fr*" dest="textSpellFr" />
However, it works with:
<copyField source="*_text_fr" dest="textSpellFr" />
<copyField source="*_text_frs" dest="textSpellFr" />
<copyField source="*_text_frms" dest="textSpellFr" />
Why does the first option not work?
source
share