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 E4F6917FF9 for ; Wed, 25 Feb 2015 21:46:05 +0000 (UTC) Received: (qmail 89308 invoked by uid 500); 25 Feb 2015 21:46:05 -0000 Delivered-To: apmail-drill-issues-archive@drill.apache.org Received: (qmail 89109 invoked by uid 500); 25 Feb 2015 21:46:05 -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 88991 invoked by uid 99); 25 Feb 2015 21:46:05 -0000 Received: from arcas.apache.org (HELO arcas.apache.org) (140.211.11.28) by apache.org (qpsmtpd/0.29) with ESMTP; Wed, 25 Feb 2015 21:46:05 +0000 Date: Wed, 25 Feb 2015 21:46:05 +0000 (UTC) From: "Deneche A. Hakim (JIRA)" To: issues@drill.apache.org Message-ID: In-Reply-To: References: Subject: [jira] [Resolved] (DRILL-2298) Selecting same column multiple times with different case from a parquet file results in just one column returned 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-2298?page=com.atlassian.jira.plugin.system.issuetabpanels:all-tabpanel ] Deneche A. Hakim resolved DRILL-2298. ------------------------------------- Resolution: Duplicate > Selecting same column multiple times with different case from a parquet file results in just one column returned > ---------------------------------------------------------------------------------------------------------------- > > Key: DRILL-2298 > URL: https://issues.apache.org/jira/browse/DRILL-2298 > Project: Apache Drill > Issue Type: Bug > Components: Storage - Parquet > Affects Versions: 0.8.0 > Reporter: Ramana Inukonda Nagaraj > Assignee: Steven Phillips > > When selecting the same column twice with the same case everything works as expected. > {code} > 0: jdbc:drill:> select BIGINT_col,BIGINT_col from `parquet_storage/parquet_all_types.parquet` limit 1; > +------------+-------------+ > | BIGINT_col | BIGINT_col0 | > +------------+-------------+ > | 1 | 1 | > +------------+-------------+ > 1 row selected (0.086 seconds) > {code} > However, when different case is used for the same column only one column is returned. > {code} > 0: jdbc:drill:> select BIGINT_col,bigint_col from `parquet_storage/parquet_all_types.parquet` limit 1; > +------------+ > | BIGINT_col | > +------------+ > | 1 | > +------------+ > 1 row selected (0.079 seconds) > {code} -- This message was sent by Atlassian JIRA (v6.3.4#6332)