You are viewing a plain text version of this content. The canonical link for it is here.
Posted to dev@lucene.apache.org by "Yonik Seeley (JIRA)" <ji...@apache.org> on 2011/05/24 23:38:47 UTC

[jira] [Updated] (SOLR-2539) VectorValueSource returnes floatVal of DocValues is wrong

     [ https://issues.apache.org/jira/browse/SOLR-2539?page=com.atlassian.jira.plugin.system.issuetabpanels:all-tabpanel ]

Yonik Seeley updated SOLR-2539:
-------------------------------

    Fix Version/s: 3.2

> 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
>             Fix For: 3.2
>
>
>         @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: dev-unsubscribe@lucene.apache.org
For additional commands, e-mail: dev-help@lucene.apache.org