You are viewing a plain text version of this content. The canonical link for it is here.
Posted to dev@pig.apache.org by "Daniel Dai (JIRA)" <ji...@apache.org> on 2010/01/27 01:26:34 UTC

[jira] Updated: (PIG-613) Casting elements inside a tuple does not take effect

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

Daniel Dai updated PIG-613:
---------------------------

    Fix Version/s: 0.7.0
         Assignee: Daniel Dai

> Casting elements inside a tuple does not take effect
> ----------------------------------------------------
>
>                 Key: PIG-613
>                 URL: https://issues.apache.org/jira/browse/PIG-613
>             Project: Pig
>          Issue Type: Bug
>          Components: impl
>    Affects Versions: 0.2.0
>            Reporter: Viraj Bhat
>            Assignee: Daniel Dai
>             Fix For: 0.7.0
>
>         Attachments: myfloatdata.txt, SQUARE.java
>
>
> Consider the following Pig script which casts return values of the SQUARE UDF which are  tuples of doubles to long. The describe output of B shows it is long, however the result is still double.
> {code}
> register statistics.jar;
> A = load 'myfloatdata.txt' using PigStorage() as (doublecol:double);
> B = foreach A generate (tuple(long))statistics.SQUARE(doublecol) as squares:(loadtimesq);
> describe B;
> explain B;
> dump B;
> {code}
> ===========================================
> Describe output of B:
> B: {squares: (loadtimesq: long)}
> ===========================================================
> Sample output of B:
> ((7885.44))
> ((792098.2200010001))
> ((1497360.9268889998))
> ((50023.7956))
> ((0.972196))
> ((0.30980356))
> ((9.9760144E-7))
> ===========================================================
> Cause: The cast for Tuples has not been implemented in POCast.java

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