Hi Mark,
Search is not coming properly becuase you have taken "ELall" field as a
text type which is not define properly.
you have to modify the schema.xml with these chance.
<fieldType name="logtype" class="solr.TextField">
<analyzer type="index">
<tokenizer class="solr.StandardTokenizerFactory"/>
<filter class="solr.StandardFilterFactory"/>
</analyzer>
</fieldType>
<field name="logtext" type="logtype" indexed="true" stored="true"
required="true"/>
<field name="ELall" type="logtype" indexed="true" stored="true"
multiValued="true"/>
--
View this message in context:
http://lucene.472066.n3.nabble.com/query-parsing-tp4230778p4230793.html
Sent from the Solr - User mailing list archive at Nabble.com.