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

Takeshi Yamamuro updated SPARK-33246:
-------------------------------------
    Affects Version/s:     (was: 3.0.1)
                       3.1.0
                       3.0.2

> Spark SQL null semantics documentation is incorrect
> ---------------------------------------------------
>
>                 Key: SPARK-33246
>                 URL: https://issues.apache.org/jira/browse/SPARK-33246
>             Project: Spark
>          Issue Type: Documentation
>          Components: Documentation, SQL
>    Affects Versions: 3.0.2, 3.1.0
>            Reporter: Stuart White
>            Priority: Trivial
>
> The documentation of Spark SQL's null semantics is (I believe) incorrect.
> The documentation states that "NULL AND False" yields NULL, when in fact it 
> yields False.
> {noformat}
> Seq[(java.lang.Boolean, java.lang.Boolean)](
>   (true, null),
>   (false, null),
>   (null, true),
>   (null, false),
>   (null, null)
> )
>   .toDF("left_operand", "right_operand")
>   .withColumn("OR", 'left_operand || 'right_operand)
>   .withColumn("AND", 'left_operand && 'right_operand)
>   .show(truncate = false)
> +------------+-------------+----+-----+
> |left_operand|right_operand|OR  |AND  |
> +------------+-------------+----+-----+
> |true        |null         |true|null |
> |false       |null         |null|false|
> |null        |true         |true|null |
> |null        |false        |null|false|  <---- this line is incorrect in the 
> docs
> |null        |null         |null|null |
> +------------+-------------+----+-----+
> {noformat}



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

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

Reply via email to