You are viewing a plain text version of this content. The canonical link for it is here.
Posted to issues@drill.apache.org by "Jeet (JIRA)" <ji...@apache.org> on 2015/04/10 05:47:12 UTC

[jira] [Commented] (DRILL-2123) Order of columns in the Web UI is wrong when columns are explicitly specified in projection list

    [ https://issues.apache.org/jira/browse/DRILL-2123?page=com.atlassian.jira.plugin.system.issuetabpanels:comment-tabpanel&focusedCommentId=14488846#comment-14488846 ] 

Jeet commented on DRILL-2123:
-----------------------------

I might be stating the obvious, but this is blocker for our usecase of Drill.
The order of columns is very important to use drill services from UI.
I am new to this, but kindly guide how we fix this and submit a patch.

> Order of columns in the Web UI is wrong when columns are explicitly specified in projection list
> ------------------------------------------------------------------------------------------------
>
>                 Key: DRILL-2123
>                 URL: https://issues.apache.org/jira/browse/DRILL-2123
>             Project: Apache Drill
>          Issue Type: Bug
>          Components: Client - HTTP
>    Affects Versions: 0.8.0
>            Reporter: Victoria Markman
>             Fix For: Future
>
>         Attachments: Screen Shot 2015-01-29 at 4.08.06 PM.png
>
>
> I'm running query:
> {code}
> select  c_integer, 
>            c_bigint, 
>            nullif(c_integer, c_bigint) 
> from   `dfs.aggregation`.t1 
> order by c_integer
> {code}
> In sqlline I get correct order of columns:
> {code}
> 0: jdbc:drill:schema=dfs> select c_integer, c_bigint, nullif(c_integer, c_bigint) from `dfs.aggregation`.t1;
> +------------+------------+------------+
> | c_integer  |  c_bigint  |   EXPR$2   |
> +------------+------------+------------+
> | 451237400  | -3477884857818808320 | 451237400  |
> {code}
> In Web UI - columns are sorted in alphabetical order. 
> Screenshot is attached.



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