Github user arina-ielchiieva commented on a diff in the pull request:
https://github.com/apache/drill/pull/1083#discussion_r160525146
--- Diff:
exec/java-exec/src/test/java/org/apache/drill/test/BaseTestQuery.java ---
@@ -119,6 +125,15 @@ public static void setupDefaultTestCluster() throws
Exception {
// turns on the verbose errors in tests
// sever side stacktraces are added to the message before sending back
to the client
test("ALTER SESSION SET `exec.errors.verbose` = true");
+ emptyDirCreating();
+ }
+
+ /**
+ * Creates an empty directory under <b>dfs.root</b> schema.
+ */
+ private static void emptyDirCreating() {
--- End diff --
Please rename -> `createEmptyDirectory`.
---