You are viewing a plain text version of this content. The canonical link for it is here.
Posted to issues@spark.apache.org by "Apache Spark (JIRA)" <ji...@apache.org> on 2018/04/18 06:03:00 UTC

[jira] [Commented] (SPARK-24007) EqualNullSafe for FloatType and DoubleType might generate a wrong result by codegen.

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

Apache Spark commented on SPARK-24007:
--------------------------------------

User 'ueshin' has created a pull request for this issue:
https://github.com/apache/spark/pull/21094

> EqualNullSafe for FloatType and DoubleType might generate a wrong result by codegen.
> ------------------------------------------------------------------------------------
>
>                 Key: SPARK-24007
>                 URL: https://issues.apache.org/jira/browse/SPARK-24007
>             Project: Spark
>          Issue Type: Bug
>          Components: SQL
>    Affects Versions: 2.0.2, 2.1.2, 2.2.1, 2.3.0
>            Reporter: Takuya Ueshin
>            Assignee: Takuya Ueshin
>            Priority: Major
>              Labels: correctness
>
> {{EqualNullSafe}} for {{FloatType}} and {{DoubleType}} might generate a wrong result by codegen.
> {noformat}
> scala> val df = Seq((Some(-1.0d), None), (None, Some(-1.0d))).toDF()
> df: org.apache.spark.sql.DataFrame = [_1: double, _2: double]
> scala> df.show()
> +----+----+
> |  _1|  _2|
> +----+----+
> |-1.0|null|
> |null|-1.0|
> +----+----+
> scala> df.filter("_1 <=> _2").show()
> +----+----+
> |  _1|  _2|
> +----+----+
> |-1.0|null|
> |null|-1.0|
> +----+----+
> {noformat}
> The result should be empty but the result remains two rows.



--
This message was sent by Atlassian JIRA
(v7.6.3#76005)

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