You are viewing a plain text version of this content. The canonical link for it is here.
Posted to dev@drill.apache.org by "Aman Sinha (JIRA)" <ji...@apache.org> on 2014/05/20 19:56:38 UTC

[jira] [Commented] (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:comment-tabpanel&focusedCommentId=14003741#comment-14003741 ] 

Aman Sinha commented on DRILL-789:
----------------------------------

Why is this an issue ? Can you provide the results you are comparing to ?  

> 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: Functions - Drill
>            Reporter: Krystal
>
> 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.2#6252)