Y
Hacker News
new
|
ask
|
show
|
jobs
by
qazxcvbnm
803 days ago
Which of these strategies does Postgres use under Repeatable Read?
1 comments
michae2
803 days ago
PG only uses EvalPlanQual under read committed isolation. Under repeatable read the first update fails with a "could not serialize" error, just as it does under serializable.
link