Remove solr.StandardFilterFactory as it is unused and breaks Solr 8.

The StandardFilterFactory did nothing for several Solr / Lucene
version. That's why it has been removed in Solr 8.

Having this filter still in schema.xml breaks creating new dlfCores with
Solr 8.

The fix is removing standardFilterFactory.

See:
* https://stackoverflow.com/questions/56913835/upgrade-filter-in-schema-xml-with-solr-standardfilterfactory-from-existing-core
* https://github.com/apache/lucene-solr/blob/branch_8_0/lucene/CHANGES.txt
* https://issues.apache.org/jira/browse/LUCENE-8356
This commit is contained in:
Alexander Bigga 2021-02-22 09:01:07 +01:00
джерело 217233fa38
коміт 74035948b9
1 змінених файлів з 0 додано та 1 видалено

@ -26,7 +26,6 @@ limitations under the License.
<fieldType name="standard" class="solr.TextField" positionIncrementGap="100">
<analyzer>
<tokenizer class="solr.StandardTokenizerFactory" />
<filter class="solr.StandardFilterFactory" />
<filter class="solr.LowerCaseFilterFactory" />
</analyzer>
</fieldType>