Return-Path: X-Original-To: apmail-drill-issues-archive@minotaur.apache.org Delivered-To: apmail-drill-issues-archive@minotaur.apache.org Received: from mail.apache.org (hermes.apache.org [140.211.11.3]) by minotaur.apache.org (Postfix) with SMTP id 33692178E6 for ; Tue, 3 Feb 2015 20:24:34 +0000 (UTC) Received: (qmail 43457 invoked by uid 500); 3 Feb 2015 20:24:35 -0000 Delivered-To: apmail-drill-issues-archive@drill.apache.org Received: (qmail 43427 invoked by uid 500); 3 Feb 2015 20:24:35 -0000 Mailing-List: contact issues-help@drill.apache.org; run by ezmlm Precedence: bulk List-Help: List-Unsubscribe: List-Post: List-Id: Reply-To: dev@drill.apache.org Delivered-To: mailing list issues@drill.apache.org Received: (qmail 43417 invoked by uid 99); 3 Feb 2015 20:24:35 -0000 Received: from arcas.apache.org (HELO arcas.apache.org) (140.211.11.28) by apache.org (qpsmtpd/0.29) with ESMTP; Tue, 03 Feb 2015 20:24:35 +0000 Date: Tue, 3 Feb 2015 20:24:35 +0000 (UTC) From: "Jacques Nadeau (JIRA)" To: issues@drill.apache.org Message-ID: In-Reply-To: References: Subject: [jira] [Updated] (DRILL-2123) Order of columns in the Web UI is wrong when columns are explicitly specified in projection list MIME-Version: 1.0 Content-Type: text/plain; charset=utf-8 Content-Transfer-Encoding: 7bit X-JIRA-FingerPrint: 30527f35849b9dde25b450d4833f0394 [ https://issues.apache.org/jira/browse/DRILL-2123?page=com.atlassian.jira.plugin.system.issuetabpanels:all-tabpanel ] Jacques Nadeau updated DRILL-2123: ---------------------------------- Component/s: Client - HTTP > 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 > 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)