You are viewing a plain text version of this content. The canonical link for it is here.
Posted to dev@pig.apache.org by "Richard Ding (JIRA)" <ji...@apache.org> on 2009/12/09 19:42:18 UTC

[jira] Assigned: (PIG-973) type resolution inconsistency

     [ https://issues.apache.org/jira/browse/PIG-973?page=com.atlassian.jira.plugin.system.issuetabpanels:all-tabpanel ]

Richard Ding reassigned PIG-973:
--------------------------------

    Assignee: Richard Ding

> type resolution inconsistency
> -----------------------------
>
>                 Key: PIG-973
>                 URL: https://issues.apache.org/jira/browse/PIG-973
>             Project: Pig
>          Issue Type: Bug
>            Reporter: Olga Natkovich
>            Assignee: Richard Ding
>
> This script works:
> A = load 'test' using PigStorage(':') as (name: chararray, age: int, gpa: float);
> B = group A by age;
> C = foreach B {
>    D = filter A by gpa > 2.5;
>    E = order A by name;
>    F = A.age;
>    describe F;
>    G = distinct F;
>    generate group, COUNT(D), MAX (E.name), MIN(G.$0);}
> dump C;
> This one produces an error:
> A = load 'test' using PigStorage(':') as (name: chararray, age: int, gpa: float);
> B = group A by age;
> C = foreach B {
>    D = filter A by gpa > 2.5;
>    E = order A by name;
>    F = A.age;
>    G = distinct F;
>    generate group, COUNT(D), MAX (E.name), MIN(G);}
> dump C;
> Notice the difference in how MIN is passed the data.

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