You are viewing a plain text version of this content. The canonical link for it is here.
Posted to issues@spark.apache.org by "Josh Rosen (JIRA)" <ji...@apache.org> on 2016/09/28 22:37:20 UTC

[jira] [Updated] (SPARK-17712) Incorrect result due to invalid pushdown of filter beneath aggregate

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

Josh Rosen updated SPARK-17712:
-------------------------------
    Summary: Incorrect result due to invalid pushdown of filter beneath aggregate  (was: Incorrect result when selecting from aggregate subquery where outer WHERE clause constant-folds to false)

> Incorrect result due to invalid pushdown of filter beneath aggregate
> --------------------------------------------------------------------
>
>                 Key: SPARK-17712
>                 URL: https://issues.apache.org/jira/browse/SPARK-17712
>             Project: Spark
>          Issue Type: Bug
>          Components: SQL
>    Affects Versions: 1.6.2, 2.0.0, 2.0.2
>            Reporter: Josh Rosen
>              Labels: correctness
>
> Let {{diamonds}} be a non-empty table. The following two queries should both return no rows, but the first returns a single row:
> {code}
> SELECT
> 1
> FROM (
>     SELECT
>     count(*)
>     FROM diamonds
> ) t1
> WHERE
> false
> {code}
> {code}
> SELECT
> 1
> FROM (
>     SELECT
>     *
>     FROM diamonds
> ) t1
> WHERE
> false
> {code}



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

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