You are viewing a plain text version of this content. The canonical link for it is here.
Posted to issues@drill.apache.org by "Aman Sinha (JIRA)" <ji...@apache.org> on 2014/12/18 22:27:13 UTC

[jira] [Assigned] (DRILL-1887) SQL Standard : NULL values are not considered equal. But drill treats them as equal

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

Aman Sinha reassigned DRILL-1887:
---------------------------------

    Assignee: Aman Sinha

> SQL Standard : NULL values are not considered equal. But drill treats them as equal
> -----------------------------------------------------------------------------------
>
>                 Key: DRILL-1887
>                 URL: https://issues.apache.org/jira/browse/DRILL-1887
>             Project: Apache Drill
>          Issue Type: Bug
>            Reporter: Rahul Challapalli
>            Assignee: Aman Sinha
>
> git.commit.id.abbrev=9dfa4a1
> Dataset1:
> {code}
> {
>  "col1":1,
>  "col2":"abc"
> }
> {
>  "col1":2,
>  "col2":null
> }
> {code}
> Dataset 2:
> {code}
> {
>  "col1":1,
>  "col2":null
> }
> {
>  "col1":2,
>  "col2":null
> }
> {
>  "col1":2,
>  "col2":"abc"
> }
> {code}
> Query :
> {code}
> select * from `a.json` a join `b.json` b on a.col2=b.col2; 
> +------------+------------+------------+------------+
> |    col1    |    col2    |   col10    |   col20    |
> +------------+------------+------------+------------+
> | 1          | abc        | 2          | abc        |
> | 2          | null       | 1          | null       |
> | 2          | null       | 2          | null       |
> +------------+------------+------------+------------+
> {code}
> Most database engines treat 2 NULL values as not being equal. This makes it hard to compare DRILL's results against any Standard SQL engine. However I am not sure whether drill is intentionally designed to behave this way.



--
This message was sent by Atlassian JIRA
(v6.3.4#6332)