You are viewing a plain text version of this content. The canonical link for it is here.
Posted to issues@ignite.apache.org by "Andrey Mashenkov (Jira)" <ji...@apache.org> on 2022/10/17 14:07:00 UTC

[jira] [Updated] (IGNITE-16693) Calcite engine. Merge join incorrectly works with null values

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

Andrey Mashenkov updated IGNITE-16693:
--------------------------------------
    Labels: calcite  (was: calcite calcite3-required)

> Calcite engine. Merge join incorrectly works with null values
> -------------------------------------------------------------
>
>                 Key: IGNITE-16693
>                 URL: https://issues.apache.org/jira/browse/IGNITE-16693
>             Project: Ignite
>          Issue Type: Bug
>            Reporter: Aleksey Plekhanov
>            Assignee: Aleksey Plekhanov
>            Priority: Major
>              Labels: calcite
>          Time Spent: 1h 10m
>  Remaining Estimate: 0h
>
> Reproducer:
> {code:java}
> executeSql("CREATE TABLE t(i INT)");
> executeSql("CREATE INDEX t_i ON t(i)");
> executeSql("INSERT INTO t VALUES (0), (null)");
> assertQuery("SELECT t1.i FROM t t1 JOIN t t2 ON t1.i = t2.i").returns(0).check();
> {code}



--
This message was sent by Atlassian Jira
(v8.20.10#820010)