error with complex nested plan
------------------------------
Key: PIG-421
URL: https://issues.apache.org/jira/browse/PIG-421
Project: Pig
Issue Type: Bug
Affects Versions: types_branch
Reporter: Olga Natkovich
Assignee: Santhosh Srinivasan
Fix For: types_branch
Even after applying patch for PIG-398, the following query still fails:
a = load 'studenttab10k' as (name, age, gpa);
b = filter a by age < 20;
c = group b by age;
d = foreach c {
cf = filter b by gpa < 3.0;
cp = cf.gpa;
cd = distinct cp;
co = order cd by $0;
generate group, flatten(co);
}
store d into 'output';
--
This message is automatically generated by JIRA.
-
You can reply to this email to add a comment to the issue online.