Github user davies commented on a diff in the pull request:

    https://github.com/apache/spark/pull/13652#discussion_r66883860
  
    --- Diff: 
sql/catalyst/src/test/scala/org/apache/spark/sql/catalyst/util/DateTimeUtilsSuite.scala
 ---
    @@ -503,5 +510,25 @@ class DateTimeUtilsSuite extends SparkFunSuite {
         test("2011-12-25 18:00:00.123456", "JST", "2011-12-25 09:00:00.123456")
         test("2011-12-25 01:00:00.123456", "PST", "2011-12-25 09:00:00.123456")
         test("2011-12-25 17:00:00.123456", "Asia/Shanghai", "2011-12-25 
09:00:00.123456")
    +
    +    // Daylight Saving Time
    +    test("2016-03-13 01:59:59", "PST", "2016-03-13 09:59:59.0")
    +    // 2016-03-13 02:00:00 PST does not exists
    +    test("2016-03-13 02:00:00", "PST", "2016-03-13 10:00:00.0")
    +    test("2016-03-13 03:00:00", "PST", "2016-03-13 10:00:00.0")
    +    test("2016-11-06 00:59:59", "PST", "2016-11-06 07:59:59.0")
    +    // 2016-11-06 01:00:00 PST could be 2016-11-06 08:00:00 UTC or 
2016-11-06 09:00:00 UTC
    +    test("2016-11-06 01:00:00", "PST", "2016-11-06 09:00:00.0")
    +    test("2016-11-06 01:59:59", "PST", "2016-11-06 09:59:59.0")
    +    test("2016-11-06 02:00:00", "PST", "2016-11-06 10:00:00.0")
    +  }
    +
    +  test("daysToMillis and millisToDays") {
    +    (-1001 to 2000).foreach { d =>
    +      assert(millisToDays(daysToMillis(d)) === d)
    --- End diff --
    
    See that, will pull yours here.


---
If your project is set up for it, you can reply to this email and have your
reply appear on GitHub as well. If your project does not have this feature
enabled and wishes so, or if the feature is enabled but not working, please
contact infrastructure at infrastruct...@apache.org or file a JIRA ticket
with INFRA.
---

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

Reply via email to