You are viewing a plain text version of this content. The canonical link for it is here.
Posted to issues@calcite.apache.org by "Jesus Camacho Rodriguez (JIRA)" <ji...@apache.org> on 2019/02/21 05:00:05 UTC

[jira] [Updated] (CALCITE-2852) RexNode simplification does not traverse calculations and other unknown UDFs

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

Jesus Camacho Rodriguez updated CALCITE-2852:
---------------------------------------------
    Summary: RexNode simplification does not traverse calculations and other unknown UDFs  (was: Simplification: traverse calculations and unknown UDFs)

> RexNode simplification does not traverse calculations and other unknown UDFs
> ----------------------------------------------------------------------------
>
>                 Key: CALCITE-2852
>                 URL: https://issues.apache.org/jira/browse/CALCITE-2852
>             Project: Calcite
>          Issue Type: Improvement
>            Reporter: Zoltan Haindrich
>            Assignee: Zoltan Haindrich
>            Priority: Major
>              Labels: pull-request-available
>          Time Spent: 1h
>  Remaining Estimate: 0h
>
> Currently simplification concentrates on basic constructs (and/or/=/...), but if it encounters an UDF which is not known; the recursion is stopped.
> For example the following expression is not simplified:
> {code:java}
>   @Test public void testSimplifyRecurseIntoArithmetics() {
>     checkSimplify(
>         plus(literal(1),
>             case_(
>                 falseLiteral, literal(1),
>                 trueLiteral, literal(2),
>                 literal(3))),
>         "+(1, 2)");
>   }
> {code}



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