[
https://issues.apache.org/jira/browse/SPARK-41850?page=com.atlassian.jira.plugin.system.issuetabpanels:all-tabpanel
]
Ruifeng Zheng reassigned SPARK-41850:
-------------------------------------
Assignee: Ruifeng Zheng
> Fix `isnan` function
> --------------------
>
> Key: SPARK-41850
> URL: https://issues.apache.org/jira/browse/SPARK-41850
> Project: Spark
> Issue Type: Sub-task
> Components: Connect
> Affects Versions: 3.4.0
> Reporter: Sandeep Singh
> Assignee: Ruifeng Zheng
> Priority: Major
> Fix For: 3.4.0
>
>
> {code:java}
> File
> "/Users/s.singh/personal/spark-oss/python/pyspark/sql/connect/functions.py",
> line 288, in pyspark.sql.connect.functions.isnan
> Failed example:
> df.select("a", "b", isnan("a").alias("r1"),
> isnan(df.b).alias("r2")).show()
> Expected:
> +---+---+-----+-----+
> | a| b| r1| r2|
> +---+---+-----+-----+
> |1.0|NaN|false| true|
> |NaN|2.0| true|false|
> +---+---+-----+-----+
> Got:
> +----+----+-----+-----+
> | a| b| r1| r2|
> +----+----+-----+-----+
> | 1.0|null|false|false|
> |null| 2.0|false|false|
> +----+----+-----+-----+
> <BLANKLINE>{code}
--
This message was sent by Atlassian Jira
(v8.20.10#820010)
---------------------------------------------------------------------
To unsubscribe, e-mail: [email protected]
For additional commands, e-mail: [email protected]