-
Type:
Bug
-
Status: Closed
-
Resolution: Won't Fix
-
Affects Version/s: 6.0.6 GA, 6.0.12 EE, 6.1.20 EE GA2
-
Fix Version/s: None
-
Fix Priority:3
in documentimpl this code is trying to set index boost for a bunch of fields to 0
public void addKeyword(String name, String value, boolean lowerCase) {
if (lowerCase && Validator.isNotNull(value))
Field field = new Field(name, value);
for (String fieldName : Field.UNSCORED_FIELD_NAMES) {
if (name.equalsIgnoreCase(fieldName))
}
_fields.put(name, field);
}
This is a bug as default no index boost is 1 and not 0. Trying to boost non normalized field will fail.
Pre solr 3.6 this was ignored , but post solr 3.6 this will be flagged by solr compiler and cause exceptions.