You are viewing a plain text version of this content. The canonical link for it is here.
Posted to issues@calcite.apache.org by "Liya Fan (Jira)" <ji...@apache.org> on 2020/04/13 04:35:00 UTC

[jira] [Assigned] (CALCITE-3910) Enhance ProjectJoinTransposeRule to support SemiJoin and AntiJoin

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

Liya Fan reassigned CALCITE-3910:
---------------------------------

    Assignee: Liya Fan

> Enhance ProjectJoinTransposeRule to support SemiJoin and AntiJoin
> -----------------------------------------------------------------
>
>                 Key: CALCITE-3910
>                 URL: https://issues.apache.org/jira/browse/CALCITE-3910
>             Project: Calcite
>          Issue Type: Improvement
>          Components: core
>    Affects Versions: 1.22.0
>            Reporter: Chunwei Lei
>            Assignee: Liya Fan
>            Priority: Major
>
> Currently, ProjectJoinTransposeRule does not support push project pass SemiJoin and AntiJoin.
> {code:java}
> public void onMatch(RelOptRuleCall call) {
>   Project origProj = call.rel(0);
>   final Join join = call.rel(1);
>   if (!join.getJoinType().projectsRight()) {
>     return; // TODO: support SemiJoin / AntiJoin
>   }
>   ...
>   ...
> }{code}
>  



--
This message was sent by Atlassian Jira
(v8.3.4#803005)