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