Return-Path: X-Original-To: apmail-hive-dev-archive@www.apache.org Delivered-To: apmail-hive-dev-archive@www.apache.org Received: from mail.apache.org (hermes.apache.org [140.211.11.3]) by minotaur.apache.org (Postfix) with SMTP id 680C817F24 for ; Mon, 7 Sep 2015 15:47:46 +0000 (UTC) Received: (qmail 68702 invoked by uid 500); 7 Sep 2015 15:47:45 -0000 Delivered-To: apmail-hive-dev-archive@hive.apache.org Received: (qmail 68559 invoked by uid 500); 7 Sep 2015 15:47:45 -0000 Mailing-List: contact dev-help@hive.apache.org; run by ezmlm Precedence: bulk List-Help: List-Unsubscribe: List-Post: List-Id: Reply-To: dev@hive.apache.org Delivered-To: mailing list dev@hive.apache.org Received: (qmail 68540 invoked by uid 99); 7 Sep 2015 15:47:45 -0000 Received: from arcas.apache.org (HELO arcas.apache.org) (140.211.11.28) by apache.org (qpsmtpd/0.29) with ESMTP; Mon, 07 Sep 2015 15:47:45 +0000 Date: Mon, 7 Sep 2015 15:47:45 +0000 (UTC) From: "Stefan (JIRA)" To: dev@hive.apache.org Message-ID: In-Reply-To: References: Subject: [jira] [Created] (HIVE-11750) ODBC Driver returns column names prefixed with table name MIME-Version: 1.0 Content-Type: text/plain; charset=utf-8 Content-Transfer-Encoding: 7bit X-JIRA-FingerPrint: 30527f35849b9dde25b450d4833f0394 Stefan created HIVE-11750: ----------------------------- Summary: ODBC Driver returns column names prefixed with table name Key: HIVE-11750 URL: https://issues.apache.org/jira/browse/HIVE-11750 Project: Hive Issue Type: Bug Reporter: Stefan I created two tables, e.g. 1.) create table t1 (abc int comment 'test column') PARTITIONED BY (abc2 string comment 'zzzz'); 2.) create table t2 (abc int comment 'test column'); For table t1 the odbc driver returns a table with column names 't1.abc' and 't1.abc2'. Notice the table prefix, which causes problems in some aplications. For table t2 the odbc driver returns a table with column names 'abc', which is ok. It seems that the partitioned by is causing some problems to JDBC driver. -- This message was sent by Atlassian JIRA (v6.3.4#6332)