------------------------------------------------------
Key: PIG-440
URL: https://issues.apache.org/jira/browse/PIG-440
Project: Pig
Issue Type: Bug
Affects Versions: types_branch
Reporter: Pradeep Kamath
Assignee: Pradeep Kamath
Fix For: types_branch
The following code runs to completion without an error though the UDF throws an exceptions:
{code}
register UdfThrowsException.jar;
a = load 'st10k';
b = load 'st10k';
c = cogroup a by $0, b by $0;
d = foreach c generate flatten(udfThrowsException((a,b));
dump d;
{code}
--
This message is automatically generated by JIRA.
-
You can reply to this email to add a comment to the issue online.