|
|
|
|
|
by slaymaker1907
1052 days ago
|
|
After reading the post a bit more carefully, I think livelock is impossible since transactions are only aborted if one or more read pages have been modified since they were read. That implies forward progress must be made another transaction in order for a transaction to be aborted. However, unless they do some very careful accounting, this sounds equivalent to snapshot isolation which has anomalies not found with serializable isolation, though the chance of this happening is reduced by using page level locking. |
|
Otherwise you can’t properly abort the txn because a “select x where y” that was previously empty, no longer is.