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

Yin Huai updated SPARK-14986:
-----------------------------
    Assignee: Herman van Hovell

> Spark SQL returns incorrect results for LATERAL VIEW OUTER queries if all 
> inner columns are projected out
> ---------------------------------------------------------------------------------------------------------
>
>                 Key: SPARK-14986
>                 URL: https://issues.apache.org/jira/browse/SPARK-14986
>             Project: Spark
>          Issue Type: Bug
>          Components: SQL
>    Affects Versions: 1.5.2
>            Reporter: Andrey Balmin
>            Assignee: Herman van Hovell
>             Fix For: 2.0.0
>
>
> Repro:   using Hive context, run this SQL query:
>    select  nil from (select 1 as x ) x LATERAL VIEW OUTER EXPLODE( array ()) 
> n as nil
> Actual result:             returns 0 rows.
> Expected results:      should return 1 row with null value.
> Details:
> If the query is modified to also return x:
>    select x, nil from (select 1 as x ) x LATERAL VIEW OUTER EXPLODE( array 
> ()) n as nil
> it works correctly and returns 1 row: [ 1, null ]
> Clearly, changing Select clause of a query should not change the number of 
> rows it returns.
> Looking at the query plan it seems that the Generator object was 
> (incorrectly) marked with “join=false"



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

---------------------------------------------------------------------
To unsubscribe, e-mail: issues-unsubscr...@spark.apache.org
For additional commands, e-mail: issues-h...@spark.apache.org

Reply via email to