[jira] [Commented] (SPARK-31814) Null in Date conversion from yyMMddHHmmss for specific date and time

2020-05-29 Thread Hyukjin Kwon (Jira)


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

Hyukjin Kwon commented on SPARK-31814:
--

Yes, it seems fixed in the master.

> Null in Date conversion from yyMMddHHmmss for specific date and time
> 
>
> Key: SPARK-31814
> URL: https://issues.apache.org/jira/browse/SPARK-31814
> Project: Spark
>  Issue Type: Bug
>  Components: SQL
>Affects Versions: 2.3.0
> Environment: Spark Version : 2.3.0.2.6.5.0-292
> Distribution : Hortonworks
>Reporter: Sunny Jain
>Priority: Minor
>
> Hi,
>  
> We are trying to convert a column with string datatype to date type using 
> below example. It seems to work for all timestamps except for the timestamp 
> for 31st March 2019 02:**:** like  19033102. Can you please look into it. 
> Thanks.
> {code}
> scala> sql("select to_date('19033100','yyMMddHHmmss')").show(false)
> ++
> | to_date('19033100', 'yyMMddHHmmss')|
> ++
> |2019-03-31                  |
> ++
> {code}
>  
>  
>  Interstingly below is not working for highlighted hours (02). 
> {code}
> scala> sql("select to_date('19033102','yyMMddHHmmss')").show(false)
> ++
> |   to_date('190331', 'yyMMddHHmmss')|
> ++
> |null                                            |
> ++
> {code}
>  
>  



--
This message was sent by Atlassian Jira
(v8.3.4#803005)

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



[jira] [Commented] (SPARK-31814) Null in Date conversion from yyMMddHHmmss for specific date and time

2020-05-28 Thread jobit mathew (Jira)


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

jobit mathew commented on SPARK-31814:
--

[~sunnyjain1] can you please check in latest version

I checked in spark 2.4.5 and this is the result;

scala> sql("select to_date('19033100','yyMMddHHmmss')").show(false);
+---+
|to_date('19033100', 'yyMMddHHmmss')|
+---+
|2019-03-31 |
+---+


scala> sql("select to_date('19033102','yyMMddHHmmss')").show(false);
+---+
|to_date('19033102', 'yyMMddHHmmss')|
+---+
|2019-03-31 |
+---+


scala>

> Null in Date conversion from yyMMddHHmmss for specific date and time
> 
>
> Key: SPARK-31814
> URL: https://issues.apache.org/jira/browse/SPARK-31814
> Project: Spark
>  Issue Type: Bug
>  Components: SQL
>Affects Versions: 2.3.0
> Environment: Spark Version : 2.3.0.2.6.5.0-292
> Distribution : Hortonworks
>Reporter: Sunny Jain
>Priority: Minor
>
> Hi,
>  
> We are trying to convert a column with string datatype to date type using 
> below example. It seems to work for all timestamps except for the timestamp 
> for 31st March 2019 02:**:** like  19033102. Can you please look into it. 
> Thanks.
> scala> sql("select to_date('19033100','yyMMddHHmmss')").show(false)
> ++
> |to_date('19033100', 'yyMMddHHmmss')|
> ++
> |2019-03-31                                                     |
> ++
>  
>  
>  Interstingly below is not working for highlighted hours (02). 
> scala> sql("select to_date('19033102','yyMMddHHmmss')").show(false)
> ++
> |to_date('190331{color:#ff}02{color}', 'yyMMddHHmmss')|
> ++
> |null                                                                   |
> ++
>  
>  



--
This message was sent by Atlassian Jira
(v8.3.4#803005)

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