Limit after FRJ causes problems
-------------------------------

                 Key: PIG-642
                 URL: https://issues.apache.org/jira/browse/PIG-642
             Project: Pig
          Issue Type: Bug
            Reporter: Olga Natkovich
            Assignee: Shravan Matthur Narayanamurthy


Script:

a = load '/user/pig/tests/data/singlefile/studenttab10k' as (name, age,gpa);
b = load '/user/pig/tests/data/singlefile/studenttab10k' as (name, age,gpa);
c = join a by name, b by name using "replicated";
d = limit c 10;
dump d;

Error: ERROR 2013: Moving LOLimit in front of LOFRJoin is not implemented

It is fine not to move limit and apply it after the join.


-- 
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