docs issue in transactions section - Mailing list pgsql-docs

From PG Doc comments form
Subject docs issue in transactions section
Date
Msg-id 162525307568.700.736681752884243253@wrigleys.postgresql.org
Whole thread Raw
Responses Re: docs issue in transactions section  (Bruce Momjian <bruce@momjian.us>)
List pgsql-docs
The following documentation comment has been logged on the website:

Page: https://www.postgresql.org/docs/13/transaction-iso.html
Description:

13.2.1. Read Committed Isolation Level
Read Committed is the default isolation level in PostgreSQL. When a
transaction uses this isolation level, a SELECT query (without a FOR
UPDATE/SHARE clause) sees only data committed before the query began; it
never sees either uncommitted data or changes committed during query
execution by concurrent transactions. In effect, a SELECT query sees a
snapshot of the database as of the instant the query begins to run. However,
SELECT does see the effects of previous updates executed within its own
transaction, even though they are not yet committed. Also note that two
successive SELECT commands can see different data, even though they are
within a single transaction, if other transactions commit changes after the
first SELECT starts and before the second SELECT starts.

I don't understand this very clearly: " it never sees either uncommitted
data or changes committed during query execution by concurrent
transactions." and this statement " Also note that two successive SELECT
commands can see different data, even though they are within a single
transaction, if other transactions commit changes after the first SELECT
starts and before the second SELECT starts."

pgsql-docs by date:

Previous
From: Bruce Momjian
Date:
Subject: Re: Link missing in the 14 release notes
Next
From: Bruce Momjian
Date:
Subject: Re: docs issue in transactions section