describe does not display "map" types in the schema.
----------------------------------------------------
Key: PIG-405
URL: https://issues.apache.org/jira/browse/PIG-405
Project: Pig
Issue Type: Bug
Components: impl
Affects Versions: types_branch
Environment: Linux 2.6.9-55.ELsmp #1 SMP Fri Apr 20 16:36:54 EDT 2007
x86_64 x86_64 x86_64 GNU/Linux
Reporter: Araceli Henley
Priority: Minor
Fix For: types_branch
In a load statement, if the type in the "as clause" is a "map", the describe
statement does not show a type of "map in the schema.
A= load ':INPATH:/singlefile/studentcomplex10k' using PigStorage() as
(s:map[],m,l);
describe A;
A: {s: ,m:bytearray,l:bytearray}
But it should be:
A: {s: map,m:bytearray,l:bytearray}
--
This message is automatically generated by JIRA.
-
You can reply to this email to add a comment to the issue online.