mirror of
https://github.com/ebean-orm/ebean.git
synced 2024-04-21 10:51:47 +00:00
Fix for #185 - RawSql parse not working with "order siblings by NAME"
This commit is contained in:
@@ -127,7 +127,7 @@ public class CQueryBuilderRawSql implements Constants {
|
||||
}
|
||||
|
||||
if (!isEmpty(orderBy)) {
|
||||
sb.append(" order by ").append(orderBy);
|
||||
sb.append(" ").append(sql.getOrderByPrefix()).append(" ").append(orderBy);
|
||||
}
|
||||
|
||||
return sb.toString().trim();
|
||||
|
||||
Reference in New Issue
Block a user