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

Jesus Camacho Rodriguez updated CALCITE-2695:
---------------------------------------------
    Fix Version/s: 1.18.0

> Simplify casts which are only widening nullability
> --------------------------------------------------
>
>                 Key: CALCITE-2695
>                 URL: https://issues.apache.org/jira/browse/CALCITE-2695
>             Project: Calcite
>          Issue Type: Improvement
>            Reporter: Zoltan Haindrich
>            Assignee: Zoltan Haindrich
>            Priority: Major
>             Fix For: 1.18.0
>
>
> There are cases in which casts are added; but they are not neccessary.
> {code}
>   @Test public void testSimplifyRedundantCast() {
>     RexNode expr = cast(isTrue(vBoolNotNull()), tBoolean(true));
>     assertThat(expr.getType().isNullable(), is(true));
>     RexNode result = simplify.simplifyUnknownAs(expr, RexUnknownAs.UNKNOWN);
>     assertThat(result.getType().isNullable(), is(false));
>   }
> {code}



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

Reply via email to