You are viewing a plain text version of this content. The canonical link for it is here.
Posted to issues@drill.apache.org by "Aman Sinha (JIRA)" <ji...@apache.org> on 2015/05/11 02:37:59 UTC

[jira] [Commented] (DRILL-3018) Queries with scalar aggregate and non equality (non correlated) fail to plan

    [ https://issues.apache.org/jira/browse/DRILL-3018?page=com.atlassian.jira.plugin.system.issuetabpanels:comment-tabpanel&focusedCommentId=14537463#comment-14537463 ] 

Aman Sinha commented on DRILL-3018:
-----------------------------------

I am unable to reproduce with a similar query on TPC-DS, using the latest master branch (git.commit.id.abbrev=6076cc6)

This query runs ok: 
{code}
select * from store_returns s1 where s1.sr_customer_sk > (select min(s2.sr_customer_sk) from store_returns s2 where s2.sr_customer_sk is null);
{code}

Can you provide the minimal data set for repro ? 

> Queries with scalar aggregate  and non equality (non correlated) fail to plan
> -----------------------------------------------------------------------------
>
>                 Key: DRILL-3018
>                 URL: https://issues.apache.org/jira/browse/DRILL-3018
>             Project: Apache Drill
>          Issue Type: Bug
>          Components: Query Planning & Optimization
>    Affects Versions: 1.0.0
>            Reporter: Victoria Markman
>         Attachments: tables.tar
>
>
> This is a regression.
> Both queries worked and returned correct result with May 7 build
> (mapr-drill-1.0.0.31658-1.noarch.rpm)
> Running with the latest build, I got these two failures:
> {code}
> select * from j2 where c_integer > (select min(c_bigint) from j7 where c_boolean is null)
> Failed with exception
> java.sql.SQLException: SYSTEM ERROR: org.apache.drill.exec.work.foreman.UnsupportedRelOperatorException: This query cannot be planned possibly due to either a cartesian join or an inequality
> select * from j2 where c_float < (select min(c_float) from j6 where c_boolean is null )
> Failed with exception
> java.sql.SQLException: SYSTEM ERROR: org.apache.drill.exec.work.foreman.UnsupportedRelOperatorException: This query cannot be planned possibly due to either a cartesian join or an inequality join 
> {code}
> The common pattern between these queries is that function MIN is running over no rows, in both queries there is no correlation to the outer table.
> {code}
> -- Non correlated
> -- Greater than
> -- MIN returns NULL
> select * from j2 where c_integer > (select min(c_bigint) from j7 where c_boolean is null);
> -- Non correlated
> -- Less than
> -- MIN returns NULL
> select * from j2 where c_float < (select min(c_float) from j6 where c_boolean is null );
> {code}



--
This message was sent by Atlassian JIRA
(v6.3.4#6332)