Skip to content

Commit

Permalink
Merge pull request DSpace#9123 from mwoodiupui/9122
Browse files Browse the repository at this point in the history
Give `authority` Solr core a `_version_` field so it can be loaded
  • Loading branch information
tdonohue authored Oct 30, 2023
2 parents 277994c + f25b6d4 commit 556be1d
Showing 1 changed file with 11 additions and 0 deletions.
11 changes: 11 additions & 0 deletions dspace/solr/authority/conf/schema.xml
Original file line number Diff line number Diff line change
Expand Up @@ -87,9 +87,20 @@
</analyzer>
</fieldType>

<fieldType name="long"
class="solr.LongPointField"
omitNorms="true"
positionIncrementGap="0"
docValues="true"/>

</types>

<fields>
<field name="_version_"
type="long"
indexed="true"
stored="true"
multiValued="false"/>
<field name="id" type="string" multiValued="false" indexed="true" stored="true" required="true"/>
<field name="field" type="string" multiValued="false" indexed="true" stored="true" required="true" />
<field name="email" type="string" multiValued="true" indexed="true" stored="true" required="false"/>
Expand Down

0 comments on commit 556be1d

Please sign in to comment.