You are viewing a plain text version of this content. The canonical link for it is here.
Posted to dev@pig.apache.org by "Thejas M Nair (JIRA)" <ji...@apache.org> on 2011/04/12 01:26:05 UTC

[jira] [Created] (PIG-1990) support casting of complex types with empty inner schema to complex type with non-empty inner schema

support casting of complex types with empty inner schema to complex type with non-empty inner schema
----------------------------------------------------------------------------------------------------

                 Key: PIG-1990
                 URL: https://issues.apache.org/jira/browse/PIG-1990
             Project: Pig
          Issue Type: Bug
    Affects Versions: 0.9.0
            Reporter: Thejas M Nair
            Assignee: Thejas M Nair
             Fix For: 0.9.0


Use case like the following should be supported - 
{code}
a = load '1.txt' as (t:tuple());
b = foreach a generate (tuple(int))t;
{code}

--
This message is automatically generated by JIRA.
For more information on JIRA, see: http://www.atlassian.com/software/jira

[jira] [Updated] (PIG-1990) support casting of complex types with empty inner schema to complex type with non-empty inner schema

Posted by "Thejas M Nair (JIRA)" <ji...@apache.org>.
     [ https://issues.apache.org/jira/browse/PIG-1990?page=com.atlassian.jira.plugin.system.issuetabpanels:all-tabpanel ]

Thejas M Nair updated PIG-1990:
-------------------------------

    Attachment: PIG-1990.1.patch

test patch passed. Unit test passed except for TestStoreInstances, but that failed for me in trunk without the patch as well.

> support casting of complex types with empty inner schema to complex type with non-empty inner schema
> ----------------------------------------------------------------------------------------------------
>
>                 Key: PIG-1990
>                 URL: https://issues.apache.org/jira/browse/PIG-1990
>             Project: Pig
>          Issue Type: Bug
>    Affects Versions: 0.9.0
>            Reporter: Thejas M Nair
>            Assignee: Thejas M Nair
>             Fix For: 0.9.0
>
>         Attachments: PIG-1990.1.patch, PIG-1990.1.patch
>
>
> Use case like the following should be supported - 
> {code}
> a = load '1.txt' as (t:tuple());
> b = foreach a generate (tuple(int))t;
> {code}

--
This message is automatically generated by JIRA.
For more information on JIRA, see: http://www.atlassian.com/software/jira

[jira] [Updated] (PIG-1990) support casting of complex types with empty inner schema to complex type with non-empty inner schema

Posted by "Thejas M Nair (JIRA)" <ji...@apache.org>.
     [ https://issues.apache.org/jira/browse/PIG-1990?page=com.atlassian.jira.plugin.system.issuetabpanels:all-tabpanel ]

Thejas M Nair updated PIG-1990:
-------------------------------

    Attachment:     (was: PIG-1990.1.patch)

> support casting of complex types with empty inner schema to complex type with non-empty inner schema
> ----------------------------------------------------------------------------------------------------
>
>                 Key: PIG-1990
>                 URL: https://issues.apache.org/jira/browse/PIG-1990
>             Project: Pig
>          Issue Type: Bug
>    Affects Versions: 0.9.0
>            Reporter: Thejas M Nair
>            Assignee: Thejas M Nair
>             Fix For: 0.9.0
>
>         Attachments: PIG-1990.1.patch
>
>
> Use case like the following should be supported - 
> {code}
> a = load '1.txt' as (t:tuple());
> b = foreach a generate (tuple(int))t;
> {code}

--
This message is automatically generated by JIRA.
For more information on JIRA, see: http://www.atlassian.com/software/jira

[jira] [Commented] (PIG-1990) support casting of complex types with empty inner schema to complex type with non-empty inner schema

Posted by "Daniel Dai (JIRA)" <ji...@apache.org>.
    [ https://issues.apache.org/jira/browse/PIG-1990?page=com.atlassian.jira.plugin.system.issuetabpanels:comment-tabpanel&focusedCommentId=13027983#comment-13027983 ] 

Daniel Dai commented on PIG-1990:
---------------------------------

+1

> support casting of complex types with empty inner schema to complex type with non-empty inner schema
> ----------------------------------------------------------------------------------------------------
>
>                 Key: PIG-1990
>                 URL: https://issues.apache.org/jira/browse/PIG-1990
>             Project: Pig
>          Issue Type: Bug
>    Affects Versions: 0.9.0
>            Reporter: Thejas M Nair
>            Assignee: Thejas M Nair
>             Fix For: 0.9.0
>
>         Attachments: PIG-1990.1.patch
>
>
> Use case like the following should be supported - 
> {code}
> a = load '1.txt' as (t:tuple());
> b = foreach a generate (tuple(int))t;
> {code}

--
This message is automatically generated by JIRA.
For more information on JIRA, see: http://www.atlassian.com/software/jira

[jira] [Resolved] (PIG-1990) support casting of complex types with empty inner schema to complex type with non-empty inner schema

Posted by "Thejas M Nair (JIRA)" <ji...@apache.org>.
     [ https://issues.apache.org/jira/browse/PIG-1990?page=com.atlassian.jira.plugin.system.issuetabpanels:all-tabpanel ]

Thejas M Nair resolved PIG-1990.
--------------------------------

    Resolution: Fixed

Patch committed to trunk and 0.9 branch.

> support casting of complex types with empty inner schema to complex type with non-empty inner schema
> ----------------------------------------------------------------------------------------------------
>
>                 Key: PIG-1990
>                 URL: https://issues.apache.org/jira/browse/PIG-1990
>             Project: Pig
>          Issue Type: Bug
>    Affects Versions: 0.9.0
>            Reporter: Thejas M Nair
>            Assignee: Thejas M Nair
>             Fix For: 0.9.0
>
>         Attachments: PIG-1990.1.patch
>
>
> Use case like the following should be supported - 
> {code}
> a = load '1.txt' as (t:tuple());
> b = foreach a generate (tuple(int))t;
> {code}

--
This message is automatically generated by JIRA.
For more information on JIRA, see: http://www.atlassian.com/software/jira

[jira] [Updated] (PIG-1990) support casting of complex types with empty inner schema to complex type with non-empty inner schema

Posted by "Thejas M Nair (JIRA)" <ji...@apache.org>.
     [ https://issues.apache.org/jira/browse/PIG-1990?page=com.atlassian.jira.plugin.system.issuetabpanels:all-tabpanel ]

Thejas M Nair updated PIG-1990:
-------------------------------

    Attachment: PIG-1990.1.patch

> support casting of complex types with empty inner schema to complex type with non-empty inner schema
> ----------------------------------------------------------------------------------------------------
>
>                 Key: PIG-1990
>                 URL: https://issues.apache.org/jira/browse/PIG-1990
>             Project: Pig
>          Issue Type: Bug
>    Affects Versions: 0.9.0
>            Reporter: Thejas M Nair
>            Assignee: Thejas M Nair
>             Fix For: 0.9.0
>
>         Attachments: PIG-1990.1.patch
>
>
> Use case like the following should be supported - 
> {code}
> a = load '1.txt' as (t:tuple());
> b = foreach a generate (tuple(int))t;
> {code}

--
This message is automatically generated by JIRA.
For more information on JIRA, see: http://www.atlassian.com/software/jira