You are viewing a plain text version of this content. The canonical link for it is here.
Posted to dev@pig.apache.org by "Olga Natkovich (JIRA)" <ji...@apache.org> on 2008/09/12 20:58:44 UTC

[jira] Resolved: (PIG-414) explicit split causes name to be dropped from describe

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

Olga Natkovich resolved PIG-414.
--------------------------------

    Resolution: Fixed

This issue has been resolved by the patch to PIG-407

> explicit split causes name to be dropped from describe
> ------------------------------------------------------
>
>                 Key: PIG-414
>                 URL: https://issues.apache.org/jira/browse/PIG-414
>             Project: Pig
>          Issue Type: Bug
>    Affects Versions: types_branch
>            Reporter: Olga Natkovich
>            Assignee: Pradeep Kamath
>            Priority: Minor
>             Fix For: types_branch
>
>
> A = load 'studenttab10k' as (name: chararray, age: int, gpa: float);
> B = load 'studenttab10k' as (name: chararray, age: int, gpa: float);
> split A into A1 if name eq 'foo', A2 if name eq 'bar';
> C = cogroup A1 by name, B by name;
> describe C;
> C: {group: chararray,{name: chararray,age: integer,gpa: float},B: {name: chararray,age: integer,gpa: float}}
> Note that name of A1 is missing from dewcribe

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