invalid schema for databag constant
-----------------------------------
Key: PIG-380
URL: https://issues.apache.org/jira/browse/PIG-380
Project: Pig
Issue Type: Bug
Affects Versions: types_branch
Reporter: Olga Natkovich
Fix For: types_branch
One = load 'foo' using PigStorage() as (one: int);
DataBag = foreach One generate
{
( 'a', 3, 'z' ),
( 'b', 3, 'z' ),
( 'a', 2, 'y' ),
( 'b', 2, 'y' ),
( 'a', 1, 'x' ),
( 'b', 1, 'x' )
};
describe DataBag;
The result is {bytearray}
--
This message is automatically generated by JIRA.
-
You can reply to this email to add a comment to the issue online.