Sandeep Singh created SPARK-41827:
-------------------------------------
Summary: DataFrame.groupBy requires all cols be Column or str
Key: SPARK-41827
URL: https://issues.apache.org/jira/browse/SPARK-41827
Project: Spark
Issue Type: Sub-task
Components: Connect
Affects Versions: 3.4.0
Reporter: Sandeep Singh
{code:java}
File
"/Users/s.singh/personal/spark-oss/python/pyspark/sql/connect/dataframe.py",
line 650, in pyspark.sql.connect.dataframe.DataFrame.fillna
Failed example:
df.na.fill(50).show()
Expected:
+---+------+-----+----+
|age|height| name|bool|
+---+------+-----+----+
| 10| 80.5|Alice|null|
| 5| 50.0| Bob|null|
| 50| 50.0| Tom|null|
| 50| 50.0| null|true|
+---+------+-----+----+
Got:
+----+------+-----+----+
| age|height| name|bool|
+----+------+-----+----+
|10.0| 80.5|Alice|null|
| 5.0| 50.0| Bob|null|
|50.0| 50.0| Tom|null|
|50.0| 50.0| null|true|
+----+------+-----+----+
<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]