Merge pull request #3040 from FOCONIS/correct-quotes

FIX: Use correct quotes when logging
This commit is contained in:
Rob Bygrave
2023-05-10 16:36:27 +12:00
committed by GitHub
4 changed files with 8 additions and 8 deletions
@@ -673,7 +673,7 @@ public class DatabasePlatform {
protected String withForUpdate(String sql, Query.LockWait lockWait, Query.LockType lockType) {
// silently assume the database does not support the "for update" clause.
log.log(INFO, "it seems your database does not support the 'for update' clause");
log.log(INFO, "it seems your database does not support the ''for update'' clause");
return sql;
}