mirror of https://github.com/apache/lucene.git
SOLR-11023: add docValues="true" to an enum field declaration in schema.xml, so that EnumFieldType, which requires docValues, stops causing TestDistributedSearch to fail
This commit is contained in:
parent
2e502c357c
commit
3f9e748202
|
@ -648,7 +648,7 @@
|
|||
<field name="payloadDelimited" type="payloadDelimited"/>
|
||||
|
||||
<!-- EnumType -->
|
||||
<field name="severity" type="severityType" indexed="true" stored="true" multiValued="false"/>
|
||||
<field name="severity" type="severityType" docValues="true" indexed="true" stored="true" multiValued="false"/>
|
||||
|
||||
|
||||
<!-- Dynamic field definitions. If a field name is not found, dynamicFields
|
||||
|
|
Loading…
Reference in New Issue