Reputation: 344
So here is the description of one of the fields in my schema.xml :
<field name="ContactEmail" type="string" indexed="false" stored="true" required="false" omitNorms="false" omitTermFreqAndPositions="false" omitPositions="true" termVectors="false" termPositions="false" termOffsets="false"/>
As you can see UI have set indexed, omitNorms, omitTermFreqAndPositions as False and omitPositions as true.
But when I look in the UI on my browser for the schema I see the following :
So no matter what I set to true or false the green check sign is always there.
Does that mean this field is indexed, or the Omit Norms not omitted?
Upvotes: 1
Views: 505
Reputation: 9789
Your field definition looks ok. And it shows up in UI. So it is not a spelling error or some such. I would check for:
I would also create a new field and see if that shows up. If it does not, you have a wrong file for whatever reason. If it does, you more likely to have a duplicate definition or spelling error or some such.
Upvotes: 1