[ 
https://issues.apache.org/jira/browse/PIG-230?page=com.atlassian.jira.plugin.system.issuetabpanels:comment-tabpanel&focusedCommentId=12594664#action_12594664
 ] 

Olga Natkovich commented on PIG-230:
------------------------------------

Arun, I have committed the patch, thanks. All my tests that used to fail now 
passing. If you could add a unit test for multiple cache options in addtion to 
multiple ship options, it would be great.

You could just attache it to this bug. (I will keep it open till then.)

> auto ship broken is presence of define for another streaming operator.
> ----------------------------------------------------------------------
>
>                 Key: PIG-230
>                 URL: https://issues.apache.org/jira/browse/PIG-230
>             Project: Pig
>          Issue Type: Bug
>            Reporter: Olga Natkovich
>            Assignee: Arun C Murthy
>         Attachments: PIG-230_0_20080505.patch
>
>
> The following works:
> A = load 'studenttab10k';
> B = foreach A generate $0, $1, $2;
> C = stream B through `perl PigStreaming.pl`;
> store C into 'out';
> But this one causes an error: Can't open perl script "PigStreaming.pl": No 
> such file or directory.
> define CMD `perl PigStreamingDep.pl` input(stdin using PigDump) 
> ship(':SCRIPTHOMEPATH:/PigStreamingDep.pl', 
> ':SCRIPTHOMEPATH:/PigStreamingModule.pm');
> A = load 'studenttab10k';
> B = stream A through `perl PigStreaming.pl`;
> C = stream B through CMD as (name, age, gpa);
> D = foreach C generate name, age;
> store D into 'out';#,

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

Reply via email to