Description
This is similar to PIG-5198, following code never fails and hangs until hitting timeouts.
define BADCMD `perl PigStreamingBad.pl start` ship('./PigStreamingBad.pl'); A = LOAD './studenttab10k' as (name:chararray, age:chararray, gpa:chararray); B = stream A THROUGH BADCMD; C = ORDER B by *; STORE C into '/tmp/deleteme';