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

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

Victoria Markman created DRILL-2123:
---------------------------------------

             Summary: 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
    Affects Versions: 0.8.0
            Reporter: Victoria Markman


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)