You are viewing a plain text version of this content. The canonical link for it is here.
Posted to dev@hive.apache.org by "Edward Capriolo (JIRA)" <ji...@apache.org> on 2013/06/19 03:04:22 UTC

[jira] [Updated] (HIVE-4614) Support outer lateral view

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

Edward Capriolo updated HIVE-4614:
----------------------------------

       Resolution: Fixed
    Fix Version/s: 0.12.0
           Status: Resolved  (was: Patch Available)

Committed thanks navis.
                
> Support outer lateral view
> --------------------------
>
>                 Key: HIVE-4614
>                 URL: https://issues.apache.org/jira/browse/HIVE-4614
>             Project: Hive
>          Issue Type: New Feature
>          Components: Query Processor
>            Reporter: Navis
>            Assignee: Navis
>            Priority: Trivial
>             Fix For: 0.12.0
>
>         Attachments: HIVE-4614.D10947.1.patch, HIVE-4614.D10947.2.patch
>
>
> New grammar suggested by [~appodictic] in https://issues.apache.org/jira/browse/HIVE-3534?page=com.atlassian.jira.plugin.system.issuetabpanels:comment-tabpanel&focusedCommentId=13665247#comment-13665247
> If UDTF-alias for lateral view forwarded nothing for a input row, regard it as nulls are forwarded keeping columns on select-alias, for example.
> {noformat}
> >select * from src LATERAL VIEW explode(array()) C AS a limit 10;
> {noformat}
> returns nothing because UDTF-alias forwards nothing. But with new grammar,
> {noformat}
> >select * from src LATERAL VIEW OUTER explode(array()) C AS a limit 10;
> ...
> 238	val_238	NULL
> 86	val_86	NULL
> 311	val_311	NULL
> 27	val_27	NULL
> 165	val_165	NULL
> 409	val_409	NULL
> 255	val_255	NULL
> 278	val_278	NULL
> 98	val_98	NULL
> 484	val_484	NULL
> {noformat}

--
This message is automatically generated by JIRA.
If you think it was sent incorrectly, please contact your JIRA administrators
For more information on JIRA, see: http://www.atlassian.com/software/jira