[
https://issues.apache.org/jira/browse/PIG-4433?page=com.atlassian.jira.plugin.system.issuetabpanels:all-tabpanel
]
Daniel Dai updated PIG-4433:
----------------------------
Resolution: Fixed
Fix Version/s: (was: 0.14.1)
Hadoop Flags: Reviewed
Status: Resolved (was: Patch Available)
That's an obvious bug. Patch committed to trunk. Thanks Kevin!
Next time, please attach the patch to Jira ticket. Pig does not use pull
request to track patches.
> 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
> Assignee: Kevin J. Price
> Fix For: 0.15.0
>
> Attachments: PIG-4433-1.patch
>
>
> 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)