I've got a column family being indexed via solr. My Solr schema uses copyField to copy everything into a single text field so that I can do fulltext searching against it. I also use this, for example, to be able to have a field both tokenized as a text field and sortable as a string field.
When I insert a record via the Solr interface this all works just great. However, if I insert a record via CQL, the columns themselves get indexed, but the copyField never happens meaning that fulltext searching doesn't work. My large text field is just empty.
Is this a bug or a feature? I'm really hoping it's just a bug and that it will be fixed or else I have to scrap and re-write a huge chunk of code and operate almost exclusively via the Solr interface (far less than ideal). Assuming it is a bug, is there any chance it might be fixable in the near future?
Thanks,
Jason
