couple of issue mapping aliases to jobs
---------------------------------------

                 Key: PIG-1557
                 URL: https://issues.apache.org/jira/browse/PIG-1557
             Project: Pig
          Issue Type: Bug
    Affects Versions: 0.8.0
            Reporter: Olga Natkovich
            Assignee: Richard Ding


I have a simple script:

A = load '/user/pig/tests/data/singlefile/studenttab10k' as (name, age, gpa);
B = group A by name;
C = foreach B generate group, COUNT(A);
D = order C by $1;
E = limit D 10;
dump E;

I noticed a couple of issues with alias to job mapping: neither load(A) nor 
limit(E) shows in the output


-- 
This message is automatically generated by JIRA.
-
You can reply to this email to add a comment to the issue online.

Reply via email to