HHH-7532 - Override getForUpdateString with correct syntax

This commit is contained in:
nrodrigues 2012-08-18 17:27:12 +01:00 committed by Strong Liu
parent c5eeaf71c1
commit 43e0bc01d6
1 changed files with 3 additions and 0 deletions

View File

@ -71,4 +71,7 @@ public class DB2400Dialect extends DB2Dialect {
.toString();
}
public String getForUpdateString() {
return " for update with rs";
}
}