mirror of
https://github.com/hibernate/hibernate-orm
synced 2025-02-17 00:24:57 +00:00
HHH-7479 getForUpdateString() of HSQLDialect returns empty string.
This commit is contained in:
parent
6d718a24b0
commit
1172fd94dc
@ -244,7 +244,12 @@ public boolean supportsLockTimeouts() {
|
||||
}
|
||||
|
||||
public String getForUpdateString() {
|
||||
if ( hsqldbVersion >= 20 ) {
|
||||
return " for update";
|
||||
}
|
||||
else {
|
||||
return "";
|
||||
}
|
||||
}
|
||||
|
||||
public boolean supportsUnique() {
|
||||
|
Loading…
x
Reference in New Issue
Block a user