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

Xiao Li resolved SPARK-20018.
-----------------------------
       Resolution: Fixed
         Assignee: Hyukjin Kwon
    Fix Version/s: 2.2.0

> Pivot with timestamp and count should not print internal representation
> -----------------------------------------------------------------------
>
>                 Key: SPARK-20018
>                 URL: https://issues.apache.org/jira/browse/SPARK-20018
>             Project: Spark
>          Issue Type: Bug
>          Components: SQL
>    Affects Versions: 2.2.0
>            Reporter: Hyukjin Kwon
>            Assignee: Hyukjin Kwon
>            Priority: Minor
>             Fix For: 2.2.0
>
>
> Currently, when we perform count with timestamp types, it prints the internal 
> representation as the column name as below:
> {code}
> scala> Seq(new 
> java.sql.Timestamp(1)).toDF("a").groupBy("a").pivot("a").count().show()
> +--------------------+----+
> |                   a|1000|
> +--------------------+----+
> |1969-12-31 16:00:...|   1|
> +--------------------+----+
> {code}
> It seems this should be 
> {code}
> +--------------------+-----------------------+
> |                   a|1969-12-31 16:00:00.001|
> +--------------------+-----------------------+
> |1969-12-31 16:00:...|                      1|
> +--------------------+-----------------------+
> {code}



--
This message was sent by Atlassian JIRA
(v6.3.15#6346)

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

Reply via email to