Skip to content

Commit

Permalink
#1911 Change default quote in druid jdbc
Browse files Browse the repository at this point in the history
  • Loading branch information
alchan-lee committed Apr 22, 2019
1 parent 87504f9 commit 4c03b57
Showing 1 changed file with 1 addition and 1 deletion.
Original file line number Diff line number Diff line change
Expand Up @@ -573,7 +573,7 @@ public static String getQuotedColumnName(String implementor, String columnName){
switch (implementor){
case "MSSQL": case "POSTGRESQL": case "PRESTO":
return columnName;
case "ORACLE": case "TIBERO":
case "ORACLE": case "TIBERO": case "DRUID":
return Arrays.stream(columnName.split("\\."))
.map(spliced -> "\"" + spliced + "\"")
.collect(Collectors.joining("."));
Expand Down

0 comments on commit 4c03b57

Please sign in to comment.