Location via proxy:   [ UP ]  
[Report a bug]   [Manage cookies]                
Skip to content

Commit ac1e974

Browse files
committed
Doc: minor wording adjustments in transaction isolation discussion.
Re-word for more clarity, per gripe from Anton Sidyakin. Discussion: https://postgr.es/m/168745911769.2239590.6062411529242609290@wrigleys.postgresql.org
1 parent b381d96 commit ac1e974

File tree

1 file changed

+4
-4
lines changed

1 file changed

+4
-4
lines changed

doc/src/sgml/mvcc.sgml

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -320,8 +320,8 @@
320320
uses this isolation level, a <command>SELECT</command> query
321321
(without a <literal>FOR UPDATE/SHARE</literal> clause) sees only data
322322
committed before the query began; it never sees either uncommitted
323-
data or changes committed during query execution by concurrent
324-
transactions. In effect, a <command>SELECT</command> query sees
323+
data or changes committed by concurrent transactions during the query's
324+
execution. In effect, a <command>SELECT</command> query sees
325325
a snapshot of the database as of the instant the query begins to
326326
run. However, <command>SELECT</command> does see the effects
327327
of previous updates executed within its own transaction, even
@@ -488,8 +488,8 @@ COMMIT;
488488
<para>
489489
The <firstterm>Repeatable Read</firstterm> isolation level only sees
490490
data committed before the transaction began; it never sees either
491-
uncommitted data or changes committed during transaction execution
492-
by concurrent transactions. (However, the query does see the
491+
uncommitted data or changes committed by concurrent transactions during
492+
the transaction's execution. (However, each query does see the
493493
effects of previous updates executed within its own transaction,
494494
even though they are not yet committed.) This is a stronger
495495
guarantee than is required by the <acronym>SQL</acronym> standard

0 commit comments

Comments
 (0)