You are viewing a plain text version of this content. The canonical link for it is here.
Posted to dev@hive.apache.org by "Pengcheng Xiong (JIRA)" <ji...@apache.org> on 2015/02/09 22:43:36 UTC

[jira] [Updated] (HIVE-9009) order by (limit) meaning for the last subquery of union in Hive is different from other main stream RDBMS

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

Pengcheng Xiong updated HIVE-9009:
----------------------------------
       Resolution: Fixed
    Fix Version/s: 1.2.0
           Status: Resolved  (was: Patch Available)

resolved in HIVE-9039

> order by (limit) meaning for the last subquery of union in Hive is different from other main stream RDBMS
> ---------------------------------------------------------------------------------------------------------
>
>                 Key: HIVE-9009
>                 URL: https://issues.apache.org/jira/browse/HIVE-9009
>             Project: Hive
>          Issue Type: Sub-task
>            Reporter: Pengcheng Xiong
>            Assignee: Pengcheng Xiong
>             Fix For: 1.2.0
>
>         Attachments: HIVE-9002-WIP.patch, HIVE-9009.01.patch
>
>
> Currently Hive will treat
> select id from A 
> union all
> select id from B
> order by id
> as
> select id from A 
> union all
> (select id from B
> order by id)
> However, it should be treated as
> (select id from A 
> union all
> select id from B)
> order by id



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