You are viewing a plain text version of this content. The canonical link for it is here.
Posted to issues@drill.apache.org by "Krystal (JIRA)" <ji...@apache.org> on 2017/03/16 18:37:41 UTC

[jira] [Closed] (DRILL-789) Left outer join returns "null" values for columns from the right table

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

Krystal closed DRILL-789.
-------------------------

Bug was verified.

> Left outer join returns "null" values for columns from the right table
> ----------------------------------------------------------------------
>
>                 Key: DRILL-789
>                 URL: https://issues.apache.org/jira/browse/DRILL-789
>             Project: Apache Drill
>          Issue Type: Bug
>          Components: Execution - Flow
>            Reporter: Krystal
>             Fix For: 0.4.0
>
>         Attachments: DRILL-789.patch
>
>
> git.commit.id.abbrev=5d7e3d3
> 0: jdbc:drill:schema=dfs> select voter.name voter_name, voter.registration registration, student.name student_name, student.gpa gpa from voter left outer join student on (student.name = voter.name) where voter.age < 30;
> +------------+--------------+--------------+------------+
> | voter_name | registration | student_name |    gpa     |
> +------------+--------------+--------------+------------+
> | [B@6ca2652 | [B@4199d4f9  | null         | null       |
> | [B@5a6d4914 | [B@3cd8ee6d  | null         | null       |
> | [B@460d5550 | [B@155c1b1e  | null         | null       |
> | [B@51f85986 | [B@7bd9675   | null         | null       |
> | [B@2fe0df4b | [B@5463cd7b  | null         | null       |
> | [B@64477185 | [B@e6e0632   | null         | null       |



--
This message was sent by Atlassian JIRA
(v6.3.15#6346)