Github user paul-rogers commented on a diff in the pull request:
https://github.com/apache/drill/pull/996#discussion_r145565023
--- Diff:
exec/java-exec/src/main/java/org/apache/drill/exec/planner/sql/SchemaUtilites.java
---
@@ -121,6 +137,9 @@ public static String getSchemaPath(List<String>
schemaPath) {
return SCHEMA_PATH_JOINER.join(schemaPath);
}
+ /** Utility method to get the schema path from one or more strings. */
+ public static String getSchemaPath(String s1, String s2, String... rest)
{ return SCHEMA_PATH_JOINER.join(s1,s2,rest); }
--- End diff --
Can't join the names for reasons cited above.
---