Locking - Mailing list pgsql-docs

From PG Doc comments form
Subject Locking
Date
Msg-id 171037536712.644.16792405319486797414@wrigleys.postgresql.org
Whole thread Raw
Responses Re: Locking
List pgsql-docs
The following documentation comment has been logged on the website:

Page: https://www.postgresql.org/docs/16/mvcc-intro.html
Description:

There really needs to be an explicit warning that the following is invalid
in normal read committed mode:-

select foo into f from bar where id=1;
f = f + 123;
update bar set foo = f where id =1;
commit;

This is a very common and serious mistake and extremely difficult to
understand from the current documentation.

pgsql-docs by date:

Previous
From: Nacho Alonso Portillo
Date:
Subject: Re: [EXTERNAL] Re: Definition of random_page_cost seems to invert correlation of that setting and seq_page_cost
Next
From: Laurenz Albe
Date:
Subject: Re: Locking