Skip to content

Commit

Permalink
fix issue where alias quoted when it shouldn't have been
Browse files Browse the repository at this point in the history
  • Loading branch information
Andrew Grosner committed Jul 2, 2015
1 parent 7234bd1 commit acbaa99
Showing 1 changed file with 1 addition and 1 deletion.
Original file line number Diff line number Diff line change
Expand Up @@ -53,7 +53,7 @@ public static ColumnAlias columnsWithFunction(String functionName, ColumnAlias..
if (i > 0) {
queryBuilder.append(",");
}
queryBuilder.appendQuoted(columnAliases[i].getAliasName());
queryBuilder.append(columnAliases[i].getAliasName());
}
queryBuilder.append(")");
return columnRaw(queryBuilder.getQuery());
Expand Down

0 comments on commit acbaa99

Please sign in to comment.