Minor correction of READ COMMITTED isolation level docs.

Per report from AK
This commit is contained in:
Kevin Grittner 2013-11-27 14:34:12 -06:00
parent 8c84803e14
commit 89ba815092
1 changed files with 2 additions and 1 deletions

View File

@ -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>