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 4F02B17546 for ; Thu, 23 Apr 2015 00:11:39 +0000 (UTC) Received: (qmail 26131 invoked by uid 500); 23 Apr 2015 00:11:39 -0000 Delivered-To: apmail-drill-issues-archive@drill.apache.org Received: (qmail 25936 invoked by uid 500); 23 Apr 2015 00:11:39 -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 25815 invoked by uid 99); 23 Apr 2015 00:11:39 -0000 Received: from arcas.apache.org (HELO arcas.apache.org) (140.211.11.28) by apache.org (qpsmtpd/0.29) with ESMTP; Thu, 23 Apr 2015 00:11:39 +0000 Date: Thu, 23 Apr 2015 00:11:39 +0000 (UTC) From: "Abhishek Girish (JIRA)" To: issues@drill.apache.org Message-ID: In-Reply-To: References: Subject: [jira] [Commented] (DRILL-2422) Querying views having the same name as their datasource fails 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-2422?page=com.atlassian.jira.plugin.system.issuetabpanels:comment-tabpanel&focusedCommentId=14508193#comment-14508193 ] Abhishek Girish commented on DRILL-2422: ---------------------------------------- Testcase: Functional/Passing/tpcds/bugs/DRILL-2422.sql > Querying views having the same name as their datasource fails > ------------------------------------------------------------- > > Key: DRILL-2422 > URL: https://issues.apache.org/jira/browse/DRILL-2422 > Project: Apache Drill > Issue Type: Bug > Components: Query Planning & Optimization > Affects Versions: 0.8.0 > Reporter: Abhishek Girish > Assignee: Venki Korukanti > Priority: Critical > Fix For: 0.9.0 > > Attachments: DRILL-2422-1.patch, drillbit_views.log > > > Git.Commit.ID: f658a3c (Mar 9 2015) > *Convert a simple text file to Parquet:* > {code:sql} > > select * from `abc.dat` limit 1; > +------------+ > | columns | > +------------+ > | ["hi","abc"] | > +------------+ > 1 row selected (0.574 seconds) > > create table abc_1 as select cast(columns[0] as varchar(10)) as a from `abc.dat`; > +------------+---------------------------+ > | Fragment | Number of records written | > +------------+---------------------------+ > | 0_0 | 1 | > +------------+---------------------------+ > 1 row selected (0.626 seconds) > > select * from abc_1 limit 1; > +------------+ > | a | > +------------+ > | hi | > +------------+ > 1 row selected (0.135 seconds) > {code} > *Create a view on top of the Parquet table:* > {code:sql} > > create view abc_1 as select cast(a as varchar(10)) as b from abc_1; > +------------+------------+ > | ok | summary | > +------------+------------+ > | true | View 'abc_1' created successfully in 'dfs.tmp' schema | > +------------+------------+ > 1 row selected (0.072 seconds) > > select * from abc_1 limit 1; > Query failed: SqlValidatorException: Column 'a' not found in any table > Error: exception while executing query: Failure while executing query. (state=,code=0) > OR > > create view abc_1 as select cast(a as varchar(10)) as b from dfs.`/tmp/abc_1`; > +------------+------------+ > | ok | summary | > +------------+------------+ > | true | View 'abc_1' created successfully in 'dfs.tmp' schema | > +------------+------------+ > 1 row selected (0.047 seconds) > > select * from abc_1 limit 1; > Query failed: SqlValidatorException: Column 'a' not found in any table > Error: exception while executing query: Failure while executing query. (state=,code=0) > OR > > create view abc_1 as select a from dfs.`/tmp/abc_1`; > +------------+------------+ > | ok | summary | > +------------+------------+ > | true | View 'abc_1' created successfully in 'dfs.tmp' schema | > +------------+------------+ > 1 row selected (0.046 seconds) > > select * from abc_1 limit 1; > +--+ > | | > +--+ > +--+ > No rows selected (11.856 seconds) > {code} > In the third case, queries do not return and need to be cancelled. > For example: > {code:sql} > > use dfs.tpcds1; > +--+ > | | > +--+ > +--+ > No rows selected (2.854 seconds) > {code} > Sqlline needs to be suspended, killed and restarted to be able to query again. -- This message was sent by Atlassian JIRA (v6.3.4#6332)