HHH-6452 PostgreSQL Dialect does not fully implement NOWAIT locking
This commit is contained in:
parent
1871e9336e
commit
419d76b17f
|
@ -462,4 +462,14 @@ public class PostgreSQL81Dialect extends Dialect {
|
|||
public boolean supportsRowValueConstructorSyntax() {
|
||||
return true;
|
||||
}
|
||||
|
||||
@Override
|
||||
public String getForUpdateNowaitString() {
|
||||
return getForUpdateString() + " nowait ";
|
||||
}
|
||||
|
||||
@Override
|
||||
public String getForUpdateNowaitString(String aliases) {
|
||||
return getForUpdateString(aliases) + " nowait ";
|
||||
}
|
||||
}
|
||||
|
|
Loading…
Reference in New Issue