You are viewing a plain text version of this content. The canonical link for it is here.
Posted to dev@pig.apache.org by "Kevin J. Price (JIRA)" <ji...@apache.org> on 2015/02/24 21:21:04 UTC

[jira] [Commented] (PIG-4433) Loading bigdecimal in nested tuple does not work

    [ https://issues.apache.org/jira/browse/PIG-4433?page=com.atlassian.jira.plugin.system.issuetabpanels:comment-tabpanel&focusedCommentId=14335375#comment-14335375 ] 

Kevin J. Price commented on PIG-4433:
-------------------------------------

Pull request created on github: https://github.com/apache/pig/pull/16

> Loading bigdecimal in nested tuple does not work
> ------------------------------------------------
>
>                 Key: PIG-4433
>                 URL: https://issues.apache.org/jira/browse/PIG-4433
>             Project: Pig
>          Issue Type: Bug
>    Affects Versions: 0.14.0, 0.14.1, 0.15.0
>            Reporter: Kevin J. Price
>             Fix For: 0.14.1, 0.15.0
>
>
> The parsing of BigDecimal data types in a nested tuple, as implemented by Utf8StorageConverter.java, does not work. There's a "break;" missing from a switch statement.
> Code example that demonstrates the problem:
> === input.txt ===
> (17,1234567890.0987654321)
> === pig_script ===:
> inp = LOAD 'input.txt' AS (foo:tuple(bar:long, baz:bigdecimal));
> STORE inp INTO 'output';
> === output ===
> (17,)
> With patch, the output becomes the expected:
> (17,1234567890.0987654321)



--
This message was sent by Atlassian JIRA
(v6.3.4#6332)