[
https://issues.apache.org/jira/browse/PIG-287?page=com.atlassian.jira.plugin.system.issuetabpanels:all-tabpanel
]
Alan Gates resolved PIG-287.
----------------------------
Resolution: Duplicate
Fix Version/s: types_branch
duplicate of PIG-289
> Explicit cast as int results in NULL
> ------------------------------------
>
> Key: PIG-287
> URL: https://issues.apache.org/jira/browse/PIG-287
> Project: Pig
> Issue Type: Bug
> Components: impl
> Affects Versions: types_branch
> Reporter: Santhosh Srinivasan
> Fix For: types_branch
>
> Attachments: cast_for_bytearrray_test.patch
>
>
> A new test case (testNestedPlan) added to TestEvalPipeline has the following
> query:
> pig.registerQuery("A = LOAD 'file:" + tmpFile + "';");
> pig.registerQuery("B = group A by $0;");
> + "C1 = filter A by $0 > -1;"
> + "C2 = distinct C1;"
> + "C3 = distinct A;"
> + "generate (int)group;"
> + "};";
> Expected:
> (0)
> (1)
> (2)
> (3)
> (4)
> (5)
> (6)
> (7)
> (8)
> (9)
> Got:
> (NULL)
> (NULL)
> (NULL)
> (NULL)
> (NULL)
> (NULL)
> (NULL)
> (NULL)
> (NULL)
> (NULL)
--
This message is automatically generated by JIRA.
-
You can reply to this email to add a comment to the issue online.