|
|
|
|
|
by bhahn
4111 days ago
|
|
FOR UPDATE NOWAIT immediately locks the rows being retrieved in the first step (as if they were to be updated)
Technically "FOR UPDATE" only makes an attempt to lock rows, and the "NOWAIT" instructs postgres, in the case that another transaction already has a lock on the row, to raise an error immediately instead of the default behavior of waiting for the lock to become available.http://www.postgresql.org/docs/9.4/static/sql-select.html |
|