Github user vvysotskyi commented on a diff in the pull request: https://github.com/apache/drill/pull/904#discussion_r137591528 --- Diff: exec/java-exec/src/test/java/org/apache/drill/exec/fn/impl/TestDateFunctions.java --- @@ -135,11 +136,16 @@ public void testIntervalArithmetic() throws Exception { @Test public void testToChar() throws Exception { - - String expectedResults[] = {(new LocalDate(2008, 2, 23)).toString("yyyy-MMM-dd"), + Locale defaultLocale = Locale.getDefault(); + try{ --- End diff -- Please add spaces in all places where required.
---