HHH-7479 getForUpdateString() of HSQLDialect returns empty string.
This commit is contained in:
parent
6d718a24b0
commit
1172fd94dc
|
@ -244,7 +244,12 @@ public class HSQLDialect extends Dialect {
|
|||
}
|
||||
|
||||
public String getForUpdateString() {
|
||||
if ( hsqldbVersion >= 20 ) {
|
||||
return " for update";
|
||||
}
|
||||
else {
|
||||
return "";
|
||||
}
|
||||
}
|
||||
|
||||
public boolean supportsUnique() {
|
||||
|
|
Loading…
Reference in New Issue