aboutsummaryrefslogtreecommitdiff
path: root/doc/src
diff options
context:
space:
mode:
authorKevin Grittner <kgrittn@postgresql.org>2013-11-27 14:34:12 -0600
committerKevin Grittner <kgrittn@postgresql.org>2013-11-27 14:34:12 -0600
commit89ba815092f9ab0b153aa67328a7c18431d809d7 (patch)
treeee1754467732d418871698239ca092d154c854b7 /doc/src
parent8c84803e14b1ba2025c37dcc1ff1c41dd6264fa0 (diff)
downloadpostgresql-89ba815092f9ab0b153aa67328a7c18431d809d7.tar.gz
postgresql-89ba815092f9ab0b153aa67328a7c18431d809d7.zip
Minor correction of READ COMMITTED isolation level docs.
Per report from AK
Diffstat (limited to 'doc/src')
-rw-r--r--doc/src/sgml/mvcc.sgml3
1 files changed, 2 insertions, 1 deletions
diff --git a/doc/src/sgml/mvcc.sgml b/doc/src/sgml/mvcc.sgml
index f56eb557b18..2ca423ce8a2 100644
--- a/doc/src/sgml/mvcc.sgml
+++ b/doc/src/sgml/mvcc.sgml
@@ -298,7 +298,8 @@
though they are not yet committed. Also note that two successive
<command>SELECT</command> commands can see different data, even
though they are within a single transaction, if other transactions
- commit changes during execution of the first <command>SELECT</command>.
+ commit changes after the first <command>SELECT</command> starts and
+ before the second <command>SELECT</command> starts.
</para>
<para>