HHH-7479 getForUpdateString() of HSQLDialect returns empty string.

This commit is contained in:
mutazkabashi 2012-10-24 00:26:52 -04:00 committed by brmeyer
parent 6d718a24b0
commit 1172fd94dc
1 changed files with 5 additions and 0 deletions

View File

@ -244,7 +244,12 @@ public class HSQLDialect extends Dialect {
}
public String getForUpdateString() {
if ( hsqldbVersion >= 20 ) {
return " for update";
}
else {
return "";
}
}
public boolean supportsUnique() {