You are viewing a plain text version of this content. The canonical link for it is here.
Posted to dev@pig.apache.org by "Mark Wagner (JIRA)" <ji...@apache.org> on 2015/02/24 03:57:11 UTC

[jira] [Updated] (PIG-4432) Built-in VALUELIST UDF does not preserve the schema when the map value type is a complex type

     [ https://issues.apache.org/jira/browse/PIG-4432?page=com.atlassian.jira.plugin.system.issuetabpanels:all-tabpanel ]

Mark Wagner updated PIG-4432:
-----------------------------
    Assignee: Mark Wagner

> Built-in VALUELIST UDF does not preserve the schema when the map value type is a complex type
> ---------------------------------------------------------------------------------------------
>
>                 Key: PIG-4432
>                 URL: https://issues.apache.org/jira/browse/PIG-4432
>             Project: Pig
>          Issue Type: Bug
>            Reporter: Anthony Hsu
>            Assignee: Mark Wagner
>
> To reproduce:
> {code:title=testValueList.txt}
> ['a'#('foo')]
> ['b'#('bar')]
> {code}
> {code:title=testValueList.pig}
> a = load 'testValueList.txt' as (map[(chararray)]);
> b = foreach a generate VALUELIST($0);
> describe b;
> {code}
> Run the Pig script:
> {code}
> pig testValueList.pig
> {code}
> Expected:
> {code}
> b: {{(val_0: chararray)}}
> {code}
> Actual:
> {code}
> b: {{()}}
> {code}



--
This message was sent by Atlassian JIRA
(v6.3.4#6332)