Details
-
Bug
-
Status: Open
-
Minor
-
Resolution: Unresolved
-
3.1
-
None
-
two Solr 3.1 on linux.
Description
we have two field on both solr:
<field name="A" type="text" indexed="true" stored="true"/>
<field name="B" type="string" indexed="true" stored="true"/>
<copyField source="A" dest="B"/>
We have a SolrDocument reader (solrj client without pojo binding) that takes all docs from one solr and SolrInputDocument write them on the other solr.
On B field in the target solr we ended with an Array containing the duplicate value we have on the first solr. How could solr internally break schema ?