You are viewing a plain text version of this content. The canonical link for it is here.
Posted to dev@drill.apache.org by "Sean Hsuan-Yi Chu (JIRA)" <ji...@apache.org> on 2015/04/04 01:30:53 UTC

[jira] [Resolved] (DRILL-1941) select from subquery having an order by fails

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

Sean Hsuan-Yi Chu resolved DRILL-1941.
--------------------------------------
    Resolution: Duplicate

the same issue where subquery order by a column which is not present in the main query

> select from subquery having an order by fails
> ---------------------------------------------
>
>                 Key: DRILL-1941
>                 URL: https://issues.apache.org/jira/browse/DRILL-1941
>             Project: Apache Drill
>          Issue Type: Bug
>          Components: Query Planning & Optimization
>    Affects Versions: 0.8.0
>            Reporter: Krystal
>            Assignee: Sean Hsuan-Yi Chu
>             Fix For: 0.9.0
>
>         Attachments: drill_err.log
>
>
> git.commit.id.abbrev=b491cdb
> The following query fails:
> 0: jdbc:drill:schema=dfs>  select q.name as name, q.registration as registration from (select cast(student.name as varchar(30)) as name, cast(voter.registration as varchar(20)) as registration from `dfs`.`default`.`voter` voter full outer join `dfs`.`default`.`./student` student on (student.name = voter.name) where student.age < 30 order by student.name) q;
> Query failed: Query failed: Unexpected exception during fragment initialization: -1
> Error: exception while executing query: Failure while executing query. (state=,code=0)
> Running the same query with "explain plan for" also fail with the same error.  If I remove the "order by student.name" from the sub-query, the query run successfully.



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