You are viewing a plain text version of this content. The canonical link for it is here.
Posted to dev@hive.apache.org by "Sergey Shelukhin (JIRA)" <ji...@apache.org> on 2014/09/18 03:53:34 UTC

[jira] [Reopened] (HIVE-8089) Ordering is lost when limit is put in outer query

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

Sergey Shelukhin reopened HIVE-8089:
------------------------------------

> Ordering is lost when limit is put in outer query
> -------------------------------------------------
>
>                 Key: HIVE-8089
>                 URL: https://issues.apache.org/jira/browse/HIVE-8089
>             Project: Hive
>          Issue Type: Bug
>            Reporter: Laljo John Pullokkaran
>            Assignee: Sergey Shelukhin
>
> It seems like hive supports order by, limit in sub queries (compiler doesn't complain). However ordering seems to be lost based on where you place the limit.   I haven't debugged the issue.
> ex:
> select key, c_int from (select key, c_int from (select key, c_int from t1 order by c_int limit 5)t1)t1;
> null	NULL
> null	NULL
> 1	1
> 1	1
> 1	1
> select key, c_int from (select key, c_int from (select key, c_int from t1 order by c_int)t1 limit 5)t1;
> 1	1
> 1	1
> 1	1
> null	NULL
> null	NULL
> select key, c_int from (select key, c_int from (select key, c_int from t1 order by c_int limit 5)t1 limit 5)t1;
> 1	1
> 1	1
> 1	1
> null	NULL
> null	NULL



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