You are viewing a plain text version of this content. The canonical link for it is here.
Posted to issues@calcite.apache.org by "Rui Wang (Jira)" <ji...@apache.org> on 2021/12/26 06:10:00 UTC

[jira] [Closed] (CALCITE-4846) IN-list that includes NULL converted to Values throws exception

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

Rui Wang closed CALCITE-4846.
-----------------------------

> IN-list that includes NULL converted to Values throws exception
> ---------------------------------------------------------------
>
>                 Key: CALCITE-4846
>                 URL: https://issues.apache.org/jira/browse/CALCITE-4846
>             Project: Calcite
>          Issue Type: Bug
>    Affects Versions: 1.27.0
>            Reporter: duan xiong
>            Assignee: duan xiong
>            Priority: Major
>              Labels: pull-request-available
>             Fix For: 1.29.0
>
>          Time Spent: 1h 10m
>  Remaining Estimate: 0h
>
> Run this SQL in JdbcExample :
> {code:java}
> select * from foodmart.sales_fact_1997 as s where s.cust_id not in (null, 100) 
> {code}
> will throw an exception:
> {noformat}
> Caused by: org.apache.calcite.runtime.CalciteException: Cannot convert null to int{noformat}
> Because when convert ROW values generate the wrong RelDataType:
> {noformat}
> type=RecordType(JavaType(int) ROW_VALUE),tuples=[{ null }, { 100 }]){noformat}
> should be(nullable):
> {noformat}
> type=RecordType(INTEGER ROW_VALUE),tuples=[{ null }, { 100 }]){noformat}



--
This message was sent by Atlassian Jira
(v8.20.1#820001)