You are viewing a plain text version of this content. The canonical link for it is here.
Posted to issues@spark.apache.org by "Dongjoon Hyun (Jira)" <ji...@apache.org> on 2020/05/01 16:36:00 UTC

[jira] [Commented] (SPARK-29701) Different answers when empty input given in GROUPING SETS

    [ https://issues.apache.org/jira/browse/SPARK-29701?page=com.atlassian.jira.plugin.system.issuetabpanels:comment-tabpanel&focusedCommentId=17097492#comment-17097492 ] 

Dongjoon Hyun commented on SPARK-29701:
---------------------------------------

Since this is closed, I removed the target version, `3.0.0`.

> Different answers when empty input given in GROUPING SETS
> ---------------------------------------------------------
>
>                 Key: SPARK-29701
>                 URL: https://issues.apache.org/jira/browse/SPARK-29701
>             Project: Spark
>          Issue Type: Sub-task
>          Components: SQL
>    Affects Versions: 2.4.0, 2.4.1, 2.4.2, 2.4.3, 2.4.4, 3.0.0
>            Reporter: Takeshi Yamamuro
>            Priority: Critical
>              Labels: correctness
>
> A query below with an empty input seems to have different answers between PgSQL and Spark;
> {code:java}
> postgres=# create table gstest_empty (a integer, b integer, v integer);
> CREATE TABLE
> postgres=# select a, b, sum(v), count(*) from gstest_empty group by grouping sets ((a,b),());
>  a | b | sum | count 
> ---+---+-----+-------
>    |   |     |     0
> (1 row)
> {code}
> {code:java}
> scala> sql("""select a, b, sum(v), count(*) from gstest_empty group by grouping sets ((a,b),())""").show
> +---+---+------+--------+
> |  a|  b|sum(v)|count(1)|
> +---+---+------+--------+
> +---+---+------+--------+
>  {code}



--
This message was sent by Atlassian Jira
(v8.3.4#803005)

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