Commit ec762bcc authored by Tom Lane's avatar Tom Lane

Correct error in description of AccessExclusiveLock mode

(failed to say that it conflicts with AccessShareLock).
parent 5d708fe2
<!--
$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>
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment