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 3D8E8181A1 for ; Fri, 13 Nov 2015 18:03:11 +0000 (UTC) Received: (qmail 96365 invoked by uid 500); 13 Nov 2015 18:03:11 -0000 Delivered-To: apmail-drill-issues-archive@drill.apache.org Received: (qmail 96309 invoked by uid 500); 13 Nov 2015 18:03:11 -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 96262 invoked by uid 99); 13 Nov 2015 18:03:11 -0000 Received: from arcas.apache.org (HELO arcas) (140.211.11.28) by apache.org (qpsmtpd/0.29) with ESMTP; Fri, 13 Nov 2015 18:03:11 +0000 Received: from arcas.apache.org (localhost [127.0.0.1]) by arcas (Postfix) with ESMTP id 03E522C1F57 for ; Fri, 13 Nov 2015 18:03:11 +0000 (UTC) Date: Fri, 13 Nov 2015 18:03:11 +0000 (UTC) From: "Deneche A. Hakim (JIRA)" To: issues@drill.apache.org Message-ID: In-Reply-To: References: Subject: [jira] [Updated] (DRILL-4086) Query hangs in planing 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-4086?page=com.atlassian.jira.plugin.system.issuetabpanels:all-tabpanel ] Deneche A. Hakim updated DRILL-4086: ------------------------------------ Component/s: (was: Execution - Codegen) Query Planning & Optimization > Query hangs in planing > ---------------------- > > Key: DRILL-4086 > URL: https://issues.apache.org/jira/browse/DRILL-4086 > Project: Apache Drill > Issue Type: Bug > Components: Query Planning & Optimization > Affects Versions: 1.2.0 > Reporter: boris chmiel > > The query is stuck seems blocked on planning (pending) > View : > create or replace view View1 AS ( > SELECT > B1.columns[0] c0, > B1.columns[1] c1 > FROM dfs.tmp.`TEST\B1.csv` B1 > LEFT OUTER JOIN dfs.tmp.`TEST\BK.csv` BK > ON B1.columns[1] = BK.columns[0] > WHERE BK.columns[0] is null AND trim(B1.columns[1]) <> '' > ); > create or replace view View2 AS ( > SELECT > View1.c0, > View1.c1 > FROM View1 > LEFT OUTER JOIN dfs.tmp.`TEST\BK.csv` BK > ON View1.c1 = BK.columns[0] > WHERE BK.columns[0] is null AND trim(View1.c1) <> '' > ); > Query : > select * FROM dfs.tmp.View2 > => Infinite Pending > data set : > B1 : > A; > B;F > C;A > D;E > E; > F;C > BK: > A;1 > B;2 > F;4 -- This message was sent by Atlassian JIRA (v6.3.4#6332)