vishesh92 commented on code in PR #8740: URL: https://github.com/apache/cloudstack/pull/8740#discussion_r1513378431
########## framework/db/src/main/java/com/cloud/utils/db/GenericDaoBase.java: ########## @@ -1208,9 +1208,14 @@ public boolean expunge(final ID id) { } } - // FIXME: Does not work for joins. @Override public int expunge(final SearchCriteria<T> sc) { + return expunge(sc, -1); + } + + // FIXME: Does not work for joins. + @Override + public int expunge(final SearchCriteria<T> sc, long limit) { Review Comment: Added explanation in the comment below. https://github.com/apache/cloudstack/pull/8740#discussion_r1513377957 -- 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: commits-unsubscr...@cloudstack.apache.org For queries about this service, please contact Infrastructure at: us...@infra.apache.org