From 89ba815092f9ab0b153aa67328a7c18431d809d7 Mon Sep 17 00:00:00 2001 From: Kevin Grittner Date: Wed, 27 Nov 2013 14:34:12 -0600 Subject: [PATCH] Minor correction of READ COMMITTED isolation level docs. Per report from AK --- doc/src/sgml/mvcc.sgml | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/doc/src/sgml/mvcc.sgml b/doc/src/sgml/mvcc.sgml index f56eb557b1..2ca423ce8a 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 SELECT commands can see different data, even though they are within a single transaction, if other transactions - commit changes during execution of the first SELECT. + commit changes after the first SELECT starts and + before the second SELECT starts.