You are viewing a plain text version of this content. The canonical link for it is here.
Posted to dev@jena.apache.org by "Andy Seaborne (JIRA)" <ji...@apache.org> on 2014/06/27 09:59:25 UTC

[jira] [Reopened] (JENA-720) NodeId does not handle BigDecimal correctly

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

Andy Seaborne reopened JENA-720:
--------------------------------


Reopen to adjust versions.

> NodeId does not handle BigDecimal correctly
> -------------------------------------------
>
>                 Key: JENA-720
>                 URL: https://issues.apache.org/jira/browse/JENA-720
>             Project: Apache Jena
>          Issue Type: Bug
>          Components: TDB
>    Affects Versions: Jena 2.11.2
>            Reporter: Marek Kowalczyk
>            Assignee: Andy Seaborne
>             Fix For: Jena 2.12.0
>
>         Attachments: JENA-720.patch
>
>
> There is an bug in NodeId. extract(NodeId nodeId)
> {code}
> case DECIMAL:
>              {
>                  BigDecimal d = DecimalNode.unpackAsBigDecimal(v) ;
>                 String x = d.toEngineeringString() ;
>                  return NodeFactory.createLiteral(x, null, XSDDatatype.XSDdecimal) ;
>              }
> {code}
>  NodeFactory.createLiteral is expecting that x will be valid lexical form, while d.toEngineeringString() is not.
> It should be:
> {code}
> case DECIMAL:
>             {
>                 BigDecimal d = DecimalNode.unpackAsBigDecimal(v) ;
>                 String x = d.toPlainString() ;
>                 return NodeFactory.createLiteral(x, null, XSDDatatype.XSDdecimal) ;
>             }
> {code}



--
This message was sent by Atlassian JIRA
(v6.2#6252)