]> git.ipfire.org Git - thirdparty/postgresql.git/commitdiff
Correct error in description of AccessExclusiveLock mode
authorTom Lane <tgl@sss.pgh.pa.us>
Wed, 11 Oct 2000 18:29:52 +0000 (18:29 +0000)
committerTom Lane <tgl@sss.pgh.pa.us>
Wed, 11 Oct 2000 18:29:52 +0000 (18:29 +0000)
(failed to say that it conflicts with AccessShareLock).

doc/src/sgml/mvcc.sgml

index e71769c4d247d0d4a53ff5146f84c9b2fc81f964..724aa0d30fb8fe7f2cb04f2feaffccac88b5034f 100644 (file)
@@ -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>