diff options
author | Bruce Momjian <bruce@momjian.us> | 2022-07-14 12:08:55 -0400 |
---|---|---|
committer | Bruce Momjian <bruce@momjian.us> | 2022-07-14 12:08:55 -0400 |
commit | 3e071b2cf584052b0799ebbc4d38ecfdb5bd701a (patch) | |
tree | 820e54d3220a989e126038279d3530c2b9b459ec /doc/src | |
parent | 80845b7c0b2cf0a26e44d7906d63cddbb4dd586c (diff) | |
download | postgresql-3e071b2cf584052b0799ebbc4d38ecfdb5bd701a.tar.gz postgresql-3e071b2cf584052b0799ebbc4d38ecfdb5bd701a.zip |
doc: mention the pg_locks lock names in parentheses
Reported-by: Troy Frericks
Discussion: https://postgr.es/m/165653551130.665.8240515669521441325@wrigleys.postgresql.org
Backpatch-through: 10
Diffstat (limited to 'doc/src')
-rw-r--r-- | doc/src/sgml/mvcc.sgml | 16 |
1 files changed, 8 insertions, 8 deletions
diff --git a/doc/src/sgml/mvcc.sgml b/doc/src/sgml/mvcc.sgml index ff148bb3dcd..14b51db55e3 100644 --- a/doc/src/sgml/mvcc.sgml +++ b/doc/src/sgml/mvcc.sgml @@ -907,7 +907,7 @@ ERROR: could not serialize access due to read/write dependencies among transact <title>Table-Level Lock Modes</title> <varlistentry> <term> - <literal>ACCESS SHARE</literal> + <literal>ACCESS SHARE</literal> (<literal>AccessShareLock</literal>) </term> <listitem> <para> @@ -925,7 +925,7 @@ ERROR: could not serialize access due to read/write dependencies among transact <varlistentry> <term> - <literal>ROW SHARE</literal> + <literal>ROW SHARE</literal> (<literal>RowShareLock</literal>) </term> <listitem> <para> @@ -948,7 +948,7 @@ ERROR: could not serialize access due to read/write dependencies among transact <varlistentry> <term> - <literal>ROW EXCLUSIVE</literal> + <literal>ROW EXCLUSIVE</literal> (<literal>RowExclusiveLock</literal>) </term> <listitem> <para> @@ -971,7 +971,7 @@ ERROR: could not serialize access due to read/write dependencies among transact <varlistentry> <term> - <literal>SHARE UPDATE EXCLUSIVE</literal> + <literal>SHARE UPDATE EXCLUSIVE</literal> (<literal>ShareUpdateExclusiveLock</literal>) </term> <listitem> <para> @@ -997,7 +997,7 @@ ERROR: could not serialize access due to read/write dependencies among transact <varlistentry> <term> - <literal>SHARE</literal> + <literal>SHARE</literal> (<literal>ShareLock</literal>) </term> <listitem> <para> @@ -1017,7 +1017,7 @@ ERROR: could not serialize access due to read/write dependencies among transact <varlistentry> <term> - <literal>SHARE ROW EXCLUSIVE</literal> + <literal>SHARE ROW EXCLUSIVE</literal> (<literal>ShareRowExclusiveLock</literal>) </term> <listitem> <para> @@ -1039,7 +1039,7 @@ ERROR: could not serialize access due to read/write dependencies among transact <varlistentry> <term> - <literal>EXCLUSIVE</literal> + <literal>EXCLUSIVE</literal> (<literal>ExclusiveLock</literal>) </term> <listitem> <para> @@ -1061,7 +1061,7 @@ ERROR: could not serialize access due to read/write dependencies among transact <varlistentry> <term> - <literal>ACCESS EXCLUSIVE</literal> + <literal>ACCESS EXCLUSIVE</literal> (<literal>AccessExclusiveLock</literal>) </term> <listitem> <para> |