You are viewing a plain text version of this content. The canonical link for it is here.
Posted to issues@drill.apache.org by "James Turton (Jira)" <ji...@apache.org> on 2022/07/19 17:30:00 UTC

[jira] [Assigned] (DRILL-4086) Query hangs in planing

     [ https://issues.apache.org/jira/browse/DRILL-4086?page=com.atlassian.jira.plugin.system.issuetabpanels:all-tabpanel ]

James Turton reassigned DRILL-4086:
-----------------------------------

    Assignee: Vova Vysotskyi

> 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 &amp; Optimization
>    Affects Versions: 1.2.0
>            Reporter: boris chmiel
>            Assignee: Vova Vysotskyi
>            Priority: Major
>
> The query is stuck seems blocked on planning (pending)
> View : 
> {noformat}
> 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]) <> ''
> );
> {noformat}
> {noformat}
> 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) <> ''
> );
> {noformat}
> Query :
> {noformat}
> select * FROM dfs.tmp.View2 
> {noformat}
> => Infinite Pending
> data set : 
> {panel:title=B1}
> A;
> B;F
> C;A
> D;E
> E;
> F;C
> {panel}
> {panel:title=BK}
> A;1
> B;2
> F;4
> {panel}



--
This message was sent by Atlassian Jira
(v8.20.10#820010)