|
|
|
|
|
by klauserc
993 days ago
|
|
With a transaction isolation level below SERIALIZABLE you can have two transactions that both read the old row (with `used = 0`) at the time they perform the update (but before they commit the transaction). In that case, both transactions will have performed an update (rows affected = 1). Why would both transactions see `used = 0`? The DB server tries to isolate transactions and actively hides effects of other transactions that have not committed yet. |
|
https://www.postgresql.org/docs/current/transaction-iso.html...