You are viewing a plain text version of this content. The canonical link for it is here.
Posted to dev@pig.apache.org by "Hadoop QA (JIRA)" <ji...@apache.org> on 2010/02/23 16:33:27 UTC

[jira] Commented: (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:comment-tabpanel&focusedCommentId=12837279#action_12837279 ] 

Hadoop QA commented on PIG-613:
-------------------------------

-1 overall.  Here are the results of testing the latest attachment 
  http://issues.apache.org/jira/secure/attachment/12436680/PIG-613-1.patch
  against trunk revision 915079.

    +1 @author.  The patch does not contain any @author tags.

    +1 tests included.  The patch appears to include 19 new or modified tests.

    -1 javadoc.  The javadoc tool appears to have generated 1 warning messages.

    +1 javac.  The applied patch does not increase the total number of javac compiler warnings.

    -1 findbugs.  The patch appears to introduce 1 new Findbugs warnings.

    +1 release audit.  The applied patch does not increase the total number of release audit warnings.

    -1 core tests.  The patch failed core unit tests.

    +1 contrib tests.  The patch passed contrib unit tests.

Test results: http://hudson.zones.apache.org/hudson/job/Pig-Patch-h8.grid.sp2.yahoo.net/217/testReport/
Findbugs warnings: http://hudson.zones.apache.org/hudson/job/Pig-Patch-h8.grid.sp2.yahoo.net/217/artifact/trunk/build/test/findbugs/newPatchFindbugsWarnings.html
Console output: http://hudson.zones.apache.org/hudson/job/Pig-Patch-h8.grid.sp2.yahoo.net/217/console

This message is automatically generated.

> 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, PIG-613-1.patch, 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.