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

    https://github.com/apache/spark/pull/13652#discussion_r67270245
  
    --- Diff: 
sql/catalyst/src/test/scala/org/apache/spark/sql/catalyst/util/DateTimeUtilsSuite.scala
 ---
    @@ -503,5 +510,26 @@ 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") {
    +     for (tz <- DateTimeTestUtils.ALL_TIMEZONES) {
    +      DateTimeTestUtils.withDefaultTimeZone(tz) {
    +        (-2000 to 2000).foreach { d =>
    +          assert(millisToDays(daysToMillis(d)) === d)
    +        }
    --- End diff --
    
    the range ```(-2000 to 2000)``` should be extended to cover more recent 
dates, today is day *16967* since the epoch, i.e.:
    ```
         for (tz <- DateTimeTestUtils.ALL_TIMEZONES) {
          DateTimeTestUtils.withDefaultTimeZone(tz) {
            (-20000 to 20000).foreach { d =>
              assert(millisToDays(daysToMillis(d)) === d, s"toJavaDate($d) = 
${toJavaDate(d)} in ${tz}")
            }
          }
    ```
    
    ...which will show more problem(s):
    
    ```
    8633 did not equal 8632 toJavaDate(8632) = 1993-08-21 in 
sun.util.calendar.ZoneInfo[id="Kwajalein",offset=43200000,dstSavings=0,useDaylight=false,transitions=5,lastRule=null]
    ```


---
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