You are viewing a plain text version of this content. The canonical link for it is here.
Posted to issues@spark.apache.org by "Sandeep Singh (Jira)" <ji...@apache.org> on 2023/01/02 17:31:00 UTC

[jira] [Created] (SPARK-41827) DataFrame.groupBy requires all cols be Column or str

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: issues-unsubscribe@spark.apache.org
For additional commands, e-mail: issues-help@spark.apache.org