Skip to content
Snippets Groups Projects
Commit ec762bcc authored by Tom Lane's avatar Tom Lane
Browse files

Correct error in description of AccessExclusiveLock mode

(failed to say that it conflicts with AccessShareLock).
parent 5d708fe2
No related branches found
No related tags found
No related merge requests found
<!-- <!--
$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"> <chapter id="mvcc">
...@@ -476,20 +476,20 @@ ERROR: Can't serialize access due to concurrent update ...@@ -476,20 +476,20 @@ ERROR: Can't serialize access due to concurrent update
</para> </para>
<para> <para>
Conflicts with RowShareLock, RowExclusiveLock, ShareLock, Conflicts with all modes (AccessShareLock, RowShareLock,
ShareRowExclusiveLock, ExclusiveLock and AccessExclusiveLock RowExclusiveLock, ShareLock,
modes. ShareRowExclusiveLock, ExclusiveLock and AccessExclusiveLock).
<note>
<para>
Only AccessExclusiveLock blocks <command>SELECT</command> (without
<option>FOR UPDATE</option>) statement.
</para>
</note>
</para> </para>
</listitem> </listitem>
</varlistentry> </varlistentry>
</variablelist> </variablelist>
<note>
<para>
Only AccessExclusiveLock blocks <command>SELECT</command> (without
<option>FOR UPDATE</option>) statement.
</para>
</note>
</para> </para>
</sect2> </sect2>
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Please register or to comment