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

Sean R. Owen resolved SPARK-37718.
----------------------------------
    Fix Version/s: 3.3.0
       Resolution: Fixed

Issue resolved by pull request 34992
[https://github.com/apache/spark/pull/34992]

> Demo sql is incorrect
> ---------------------
>
>                 Key: SPARK-37718
>                 URL: https://issues.apache.org/jira/browse/SPARK-37718
>             Project: Spark
>          Issue Type: Documentation
>          Components: Documentation
>    Affects Versions: 3.2.0
>            Reporter: Peng
>            Assignee: Peng
>            Priority: Minor
>             Fix For: 3.3.0
>
>
> There is a sql statement in this section 
> https://spark.apache.org/docs/latest/sql-ref-null-semantics.html#null-semantics
>  that is incorrect.
> {code:java}
> SELECT * FROM person GROUP BY age HAVING max(age) > 18; {code}
> should be
> {code:java}
> SELECT age, count(*) FROM person GROUP BY age HAVING max(age) > 18;{code}
>  



--
This message was sent by Atlassian Jira
(v8.20.1#820001)

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

Reply via email to