[
https://issues.apache.org/jira/browse/PIG-313?page=com.atlassian.jira.plugin.system.issuetabpanels:comment-tabpanel&focusedCommentId=12616197#action_12616197
]
Pradeep Kamath commented on PIG-313:
------------------------------------
Another case of this issue is the following:
{code}
a = load 'singlefile/studenttab10k' as (name, age, gpa);
b = group a ALL;
c = foreach b generate SUM((int)(a.age)), MIN((int)(a.age)), MAX((int)(a.age)),
AVG((int)(a.age)), MIN((chararray)(a.name)), MAX((chararray)(a.name)),
SUM((double)(a.gpa)), MIN((double)(a.gpa)), MAX((double)(a.gpa)),
AVG((double)(a.gpa));
store c into 'outdir';
{code}
In this case, the cast fails since it is trying to cast a bag of bytearray to
int. However it should really cast each bytearray to int and then supply the
bag of ints to SUM() etc.
> Error handling aggregate of a computation
> -----------------------------------------
>
> Key: PIG-313
> URL: https://issues.apache.org/jira/browse/PIG-313
> Project: Pig
> Issue Type: Bug
> Affects Versions: types_branch
> Reporter: Pradeep Kamath
> Fix For: types_branch
>
>
> Query which fails:
> {code}
> a = load ':INPATH:/singlefile/studenttab10k' as (name:chararray, age:int,
> gpa:double);
> b = group a by name;
> c = foreach b generate group, SUM(a.age*a.gpa);
> store c into ':OUTPATH:';\,
> {code}
> Error output:
> {quote}
> 2008-07-14 16:34:08,684 [main] INFO
> org.apache.pig.backend.hadoop.executionengine.HExecutionEngine - Connecting
> to hadoop file system at: testhost.com:8020
> 2008-07-14 16:34:08,741 [main] WARN org.apache.hadoop.fs.FileSystem -
> "testhost.com:8020" is a deprecated filesystem name. Use
> "hdfs://testhost:8020/" instead.
> 2008-07-14 16:34:08,995 [main] INFO
> org.apache.pig.backend.hadoop.executionengine.HExecutionEngine - Connecting
> to map-reduce job tracker at: testhost.com:50020
> 2008-07-14 16:34:09,251 [main] WARN org.apache.hadoop.fs.FileSystem -
> "testhost.com:8020" is a deprecated filesystem name. Use
> "hdfs://testhost:8020/" instead.
> 2008-07-14 16:34:09,559 [main] ERROR org.apache.pig.PigServer - Cannot
> evaluate output type of Mul/Div Operator
> 2008-07-14 16:34:09,559 [main] ERROR org.apache.pig.PigServer - Problem
> resolving LOForEach schema
> 2008-07-14 16:34:09,559 [main] ERROR org.apache.pig.PigServer - Severe
> problem found during validation
> org.apache.pig.impl.plan.PlanValidationException: An unexpected exception
> caused the validation to stop
> 2008-07-14 16:34:09,560 [main] ERROR org.apache.pig.tools.grunt.Grunt -
> java.io.IOException: Unable to store for alias: c
> 2008-07-14 16:34:09,560 [main] ERROR org.apache.pig.Main -
> java.io.IOException: Unable to store for alias: c
> {quote}
--
This message is automatically generated by JIRA.
-
You can reply to this email to add a comment to the issue online.