Skip to content

Commit

Permalink
groupConcat reworked: Oracle fixes
Browse files Browse the repository at this point in the history
  • Loading branch information
Tapac committed Oct 13, 2018
1 parent e6c3cfd commit 67035dd
Showing 1 changed file with 1 addition and 1 deletion.
Original file line number Diff line number Diff line change
Expand Up @@ -84,7 +84,7 @@ internal object OracleFunctionProvider : FunctionProvider() {
if (expr.orderBy.size != 1)
TransactionManager.current().throwUnsupportedException("LISTAGG requires single order by clause")
append("LISTAGG(")
append(expr.expr)
append(expr.expr.toSQL(queryBuilder))
expr.separator?.let {
append(", '$it'")
}
Expand Down

0 comments on commit 67035dd

Please sign in to comment.