Github user vvysotskyi commented on a diff in the pull request: https://github.com/apache/drill/pull/904#discussion_r149440034 --- Diff: exec/java-exec/src/test/java/org/apache/drill/exec/fn/interp/TestConstantFolding.java --- @@ -117,6 +123,13 @@ public void createFiles(int smallFileLines, int bigFileLines) throws Exception{ @Test public void testConstantFolding_allTypes() throws Exception { + new MockUp<DateTimeUtils>() { --- End diff -- I meant to use the same method in all tests where Locale should be mocked. Please replace it.
---