You are viewing a plain text version of this content. The canonical link for it is here.
Posted to issues@calcite.apache.org by "Julian Hyde (JIRA)" <ji...@apache.org> on 2019/03/20 22:32:00 UTC

[jira] [Commented] (CALCITE-2936) Simplify EXISTS or NOT EXISTS sub-query that has "GROUP BY ()"

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

Julian Hyde commented on CALCITE-2936:
--------------------------------------

Consider using the RelMdRowCount statistic for this. If it returns a value 1.0 or higher, it is safe to convert EXISTS to TRUE and NOT EXISTS to FALSE.

> Simplify EXISTS or NOT EXISTS sub-query that has "GROUP BY ()"
> --------------------------------------------------------------
>
>                 Key: CALCITE-2936
>                 URL: https://issues.apache.org/jira/browse/CALCITE-2936
>             Project: Calcite
>          Issue Type: New Feature
>            Reporter: Haisheng Yuan
>            Priority: Major
>
> An EXISTS or NOT EXISTS sub-query whose inner child is an aggregate with no grouping columns should be simplified to a Boolean constant.
> Example:
> {code:java}
> exists(select sum(i) from X) --> true
> not exists(select sum(i) from X) --> false
> {code}
> Repro:
> {code:java}
> @Test public void testExistentialSubquery() {
>     final String sql = "SELECT e1.empno\n"
>         + "FROM emp e1 where exists\n"
>         + "(select avg(sal) from emp e2 where e1.empno = e2.empno )";
>     sql(sql).decorrelate(true).ok();
>   }
> {code}
> We got plan:
> {code:java}
> LogicalProject(EMPNO=[$0])
>   LogicalProject(EMPNO=[$0], ENAME=[$1], JOB=[$2], MGR=[$3], HIREDATE=[$4], SAL=[$5], COMM=[$6], DEPTNO=[$7], SLACKER=[$8], EMPNO0=[CAST($9):INTEGER], $f1=[CAST($10):BOOLEAN])
>     LogicalJoin(condition=[=($0, $9)], joinType=[inner])
>       LogicalTableScan(table=[[CATALOG, SALES, EMP]])
>       LogicalAggregate(group=[{0}], agg#0=[MIN($1)])
>         LogicalProject(EMPNO=[$0], $f0=[true])
>           LogicalAggregate(group=[{0}], EXPR$0=[AVG($1)])
>             LogicalProject(EMPNO=[$0], SAL=[$5])
>               LogicalTableScan(table=[[CATALOG, SALES, EMP]])
> {code}
> The preferred plan should be:
> {code:java}
> LogicalProject(EMPNO=[$0])
>   LogicalTableScan(table=[[CATALOG, SALES, EMP]])
> {code}



--
This message was sent by Atlassian JIRA
(v7.6.3#76005)