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

    https://github.com/apache/spark/pull/7355#discussion_r34418882
  
    --- Diff: 
unsafe/src/test/java/org/apache/spark/unsafe/types/IntervalSuite.java ---
    @@ -56,4 +56,53 @@ public void toStringTest() {
         i = new Interval(34, 3 * MICROS_PER_WEEK + 13 * MICROS_PER_HOUR + 123);
         assertEquals(i.toString(), "interval 2 years 10 months 3 weeks 13 
hours 123 microseconds");
       }
    +
    +  @Test
    +  public void fromStringTest() {
    +    testSingleUnit("year", 3, 36, 0);
    +    testSingleUnit("month", 3, 3, 0);
    +    testSingleUnit("week", 3, 0, 3 * MICROS_PER_WEEK);
    +    testSingleUnit("day", 3, 0, 3 * MICROS_PER_DAY);
    +    testSingleUnit("hour", 3, 0, 3 * MICROS_PER_HOUR);
    +    testSingleUnit("minute", 3, 0, 3 * MICROS_PER_MINUTE);
    +    testSingleUnit("second", 3, 0, 3 * MICROS_PER_SECOND);
    +    testSingleUnit("millisecond", 3, 0, 3 * MICROS_PER_MILLI);
    +    testSingleUnit("microsecond", 3, 0, 3);
    +
    +    String s;
    +    Interval i;
    +
    +    s = "interval   -5  years  23   month";
    +    i = new Interval(-5 * 12 + 23, 0);
    +    assertEquals(Interval.fromString(s), i);
    --- End diff --
    
    probably not - but we should definitely test each unit at least once.


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