Skip to content

Commit

Permalink
Fixed EZP-19993: indexing errors with attribute boosting using solr 3…
Browse files Browse the repository at this point in the history
….6 (extended version from pull request, covering multicore examples as well)
  • Loading branch information
paulborgermans committed Nov 20, 2012
1 parent 45f2979 commit f711ca8
Show file tree
Hide file tree
Showing 4 changed files with 4 additions and 4 deletions.
2 changes: 1 addition & 1 deletion java/solr.multicore/eng-GB/conf/schema.xml
Expand Up @@ -66,7 +66,7 @@
-->

<!-- The StrField type is not analyzed, but indexed/stored verbatim. -->
<fieldType name="string" class="solr.StrField" sortMissingLast="true" omitNorms="true"/>
<fieldType name="string" class="solr.StrField" sortMissingLast="true" omitNorms="false"/>

<!-- needed for the hardcoded meta fields -->
<fieldType name="mstring" class="solr.StrField" sortMissingLast="true" omitNorms="true"/>
Expand Down
2 changes: 1 addition & 1 deletion java/solr.multicore/fre-FR/conf/schema.xml
Expand Up @@ -66,7 +66,7 @@
-->

<!-- The StrField type is not analyzed, but indexed/stored verbatim. -->
<fieldType name="string" class="solr.StrField" sortMissingLast="true" omitNorms="true"/>
<fieldType name="string" class="solr.StrField" sortMissingLast="true" omitNorms="false"/>

<!-- needed for the hardcoded meta fields -->
<fieldType name="mstring" class="solr.StrField" sortMissingLast="true" omitNorms="true"/>
Expand Down
2 changes: 1 addition & 1 deletion java/solr.multicore/nor-NO/conf/schema.xml
Expand Up @@ -66,7 +66,7 @@
-->

<!-- The StrField type is not analyzed, but indexed/stored verbatim. -->
<fieldType name="string" class="solr.StrField" sortMissingLast="true" omitNorms="true"/>
<fieldType name="string" class="solr.StrField" sortMissingLast="true" omitNorms="false"/>

<!-- needed for the hardcoded meta fields -->
<fieldType name="mstring" class="solr.StrField" sortMissingLast="true" omitNorms="true"/>
Expand Down
2 changes: 1 addition & 1 deletion java/solr/conf/schema.xml
Expand Up @@ -66,7 +66,7 @@
-->

<!-- The StrField type is not analyzed, but indexed/stored verbatim. -->
<fieldType name="string" class="solr.StrField" sortMissingLast="true" omitNorms="true"/>
<fieldType name="string" class="solr.StrField" sortMissingLast="true" omitNorms="false"/>

<!-- needed for the hardcoded meta fields -->
<fieldType name="mstring" class="solr.StrField" sortMissingLast="true" omitNorms="true"/>
Expand Down

0 comments on commit f711ca8

Please sign in to comment.