diff options
author | Tom Lane <tgl@sss.pgh.pa.us> | 2000-10-11 18:29:52 +0000 |
---|---|---|
committer | Tom Lane <tgl@sss.pgh.pa.us> | 2000-10-11 18:29:52 +0000 |
commit | ec762bcc8acb4575bd8aca5b7fce9279380296fe (patch) | |
tree | df30f03eb3c59c77b876f6b46ef01485bf3957fb | |
parent | 5d708fe22ed21119bf9f5762870dc54645a82894 (diff) | |
download | postgresql-ec762bcc8acb4575bd8aca5b7fce9279380296fe.tar.gz postgresql-ec762bcc8acb4575bd8aca5b7fce9279380296fe.zip |
Correct error in description of AccessExclusiveLock mode
(failed to say that it conflicts with AccessShareLock).
-rw-r--r-- | doc/src/sgml/mvcc.sgml | 22 |
1 files changed, 11 insertions, 11 deletions
diff --git a/doc/src/sgml/mvcc.sgml b/doc/src/sgml/mvcc.sgml index e71769c4d24..724aa0d30fb 100644 --- a/doc/src/sgml/mvcc.sgml +++ b/doc/src/sgml/mvcc.sgml @@ -1,5 +1,5 @@ <!-- -$Header: /cvsroot/pgsql/doc/src/sgml/mvcc.sgml,v 2.9 2000/10/11 17:38:36 tgl Exp $ +$Header: /cvsroot/pgsql/doc/src/sgml/mvcc.sgml,v 2.10 2000/10/11 18:29:52 tgl Exp $ --> <chapter id="mvcc"> @@ -476,20 +476,20 @@ ERROR: Can't serialize access due to concurrent update </para> <para> - Conflicts with RowShareLock, RowExclusiveLock, ShareLock, - ShareRowExclusiveLock, ExclusiveLock and AccessExclusiveLock - modes. - - <note> - <para> - Only AccessExclusiveLock blocks <command>SELECT</command> (without - <option>FOR UPDATE</option>) statement. - </para> - </note> + Conflicts with all modes (AccessShareLock, RowShareLock, + RowExclusiveLock, ShareLock, + ShareRowExclusiveLock, ExclusiveLock and AccessExclusiveLock). </para> </listitem> </varlistentry> </variablelist> + + <note> + <para> + Only AccessExclusiveLock blocks <command>SELECT</command> (without + <option>FOR UPDATE</option>) statement. + </para> + </note> </para> </sect2> |