Skip to content

Commit

Permalink
#282 Support entity references by non-ID column / ) removed
Browse files Browse the repository at this point in the history
  • Loading branch information
Tapac committed Oct 12, 2018
1 parent 83030cf commit e6c3cfd
Showing 1 changed file with 1 addition and 1 deletion.
Original file line number Diff line number Diff line change
Expand Up @@ -52,7 +52,7 @@ internal object SQLServerFunctionProvider : FunctionProvider() {
append(expr.expr.toSQL(queryBuilder))
append(", '${expr.separator}')")
expr.orderBy.singleOrNull()?.let { (col, order) ->
append(") WITHIN GROUP (ORDER BY ${col.toSQL(queryBuilder)} ${order.name})")
append(" WITHIN GROUP (ORDER BY ${col.toSQL(queryBuilder)} ${order.name})")
}
}
}
Expand Down

0 comments on commit e6c3cfd

Please sign in to comment.