vishesh92 commented on code in PR #9573:
URL: https://github.com/apache/cloudstack/pull/9573#discussion_r1728454627
##########
framework/db/src/main/java/com/cloud/utils/db/Filter.java:
##########
@@ -69,7 +75,7 @@ public Filter(Filter that) {
that._limit = null;
}
- public void addOrderBy(Class<?> clazz, String field, boolean ascending) {
+ public void addOrderBy(Class<?> clazz, String field, boolean ascending,
String tableAlias) {
Review Comment:
```suggestion
public void addOrderBy(Class<?> clazz, String field, boolean ascending) {
return addOrderBy(clazz, field, ascending, null);
}
public void addOrderBy(Class<?> clazz, String field, boolean ascending,
String tableAlias) {
```
--
This is an automated message from the Apache Git Service.
To respond to the message, please log on to GitHub and use the
URL above to go to the specific comment.
To unsubscribe, e-mail: [email protected]
For queries about this service, please contact Infrastructure at:
[email protected]