Return-Path: Delivered-To: apmail-hive-dev-archive@www.apache.org Received: (qmail 47113 invoked from network); 20 Dec 2010 22:57:22 -0000 Received: from unknown (HELO mail.apache.org) (140.211.11.3) by 140.211.11.9 with SMTP; 20 Dec 2010 22:57:22 -0000 Received: (qmail 19775 invoked by uid 500); 20 Dec 2010 22:57:22 -0000 Delivered-To: apmail-hive-dev-archive@hive.apache.org Received: (qmail 19666 invoked by uid 500); 20 Dec 2010 22:57:22 -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 19658 invoked by uid 500); 20 Dec 2010 22:57:22 -0000 Delivered-To: apmail-hadoop-hive-dev@hadoop.apache.org Received: (qmail 19653 invoked by uid 99); 20 Dec 2010 22:57:22 -0000 Received: from athena.apache.org (HELO athena.apache.org) (140.211.11.136) by apache.org (qpsmtpd/0.29) with ESMTP; Mon, 20 Dec 2010 22:57:22 +0000 X-ASF-Spam-Status: No, hits=-2000.0 required=10.0 tests=ALL_TRUSTED X-Spam-Check-By: apache.org Received: from [140.211.11.22] (HELO thor.apache.org) (140.211.11.22) by apache.org (qpsmtpd/0.29) with ESMTP; Mon, 20 Dec 2010 22:57:21 +0000 Received: from thor (localhost [127.0.0.1]) by thor.apache.org (8.13.8+Sun/8.13.8) with ESMTP id oBKMv1sn005647 for ; Mon, 20 Dec 2010 22:57:01 GMT Message-ID: <5608563.225381292885821348.JavaMail.jira@thor> Date: Mon, 20 Dec 2010 17:57:01 -0500 (EST) From: "John Sichi (JIRA)" To: hive-dev@hadoop.apache.org Subject: [jira] Created: (HIVE-1857) mixed case tablename on lefthand side of LATERAL VIEW results in query failing with confusing error message MIME-Version: 1.0 Content-Type: text/plain; charset=utf-8 Content-Transfer-Encoding: 7bit X-JIRA-FingerPrint: 30527f35849b9dde25b450d4833f0394 mixed case tablename on lefthand side of LATERAL VIEW results in query failing with confusing error message ----------------------------------------------------------------------------------------------------------- Key: HIVE-1857 URL: https://issues.apache.org/jira/browse/HIVE-1857 Project: Hive Issue Type: Bug Components: Query Processor Affects Versions: 0.6.0 Reporter: John Sichi Assignee: John Sichi Fix For: 0.7.0 Attachments: HIVE-1857.1.patch For the modified query below in lateral_view.q, the exception "org.apache.hadoop.hive.ql.parse.SemanticException: line 3:7 Invalid Table Alias or Column Reference myCol" is thrown. The query should succeed. SELECT myCol from tmp_PYANG_lv LATERAL VIEW explode(array(1,2,3)) myTab as myCol limit 3; -- This message is automatically generated by JIRA. - You can reply to this email to add a comment to the issue online.