explicit split causes name to be dropped from describe
------------------------------------------------------
Key: PIG-414
URL: https://issues.apache.org/jira/browse/PIG-414
Project: Pig
Issue Type: Bug
Affects Versions: types_branch
Reporter: Olga Natkovich
Priority: Minor
Fix For: types_branch
A = load 'studenttab10k' as (name: chararray, age: int, gpa: float);
B = load 'studenttab10k' as (name: chararray, age: int, gpa: float);
split A into A1 if name eq 'foo', A2 if name eq 'bar';
C = cogroup A1 by name, B by name;
describe C;
C: {group: chararray,{name: chararray,age: integer,gpa: float},B: {name:
chararray,age: integer,gpa: float}}
Note that name of A1 is missing from dewcribe
--
This message is automatically generated by JIRA.
-
You can reply to this email to add a comment to the issue online.