VectorValueSource returnes floatVal of DocValues is wrong
---------------------------------------------------------
Key: SOLR-2539
URL: https://issues.apache.org/jira/browse/SOLR-2539
Project: Solr
Issue Type: Bug
Components: search
Environment: JDK1.6/Tomcat6
Reporter: tom liu
@Override
public void floatVal(int doc, float[] vals) {
vals[0] = x.byteVal(doc);
vals[1] = y.byteVal(doc);
}
should be:
@Override
public void floatVal(int doc, float[] vals) {
vals[0] = x.floatVal(doc);
vals[1] = y.floatVal(doc);
}
--
This message is automatically generated by JIRA.
For more information on JIRA, see: http://www.atlassian.com/software/jira
---------------------------------------------------------------------
To unsubscribe, e-mail: [email protected]
For additional commands, e-mail: [email protected]