Currently, I'm trying to add a new field to our SOLR engine.
I've added the following into the schema.xml file.
<field name='FIELDNAME'      type='string'  indexed='true' stored='false' />
The xml passed to solr for indexing is:
<FIELDNAMES>
     <FIELDNAME>1</FIELDNAME>
                :
                :
                :
     <FIELDNAME>N</FIELDNAME>
</FIELDNAMES>
For some reason when I do a solr query via the admin or anywhere else with FIELDNAME:1 nothing is returned.
What would be a recommend way to go forward with solving this problem?