diff options
author | Michael Paquier | 2022-01-20 07:54:47 +0000 |
---|---|---|
committer | Michael Paquier | 2022-01-20 07:54:47 +0000 |
commit | b2a76bb7d0550fbfdc028e5bda4853d05444398a (patch) | |
tree | 49601330642efd30e82dfd33452b7ac76ac28f7e | |
parent | 7a5f6b47488d824b1ea1326be4337e2c32325ff2 (diff) |
doc: Mention the level of locks taken on objects in COMMENT
This information was nowhere to be found. This adds one note on the
page of COMMENT, and one note in the section dedicated to explicit
locking, both telling that a SHARE UPDATE EXCLUSIVE lock is taken on the
object commented.
Author: Nikolai Berkoff
Reviewed-by: Laurenz Albe
Discussion: https://postgr.es/m/_0HDHIGcCdCsUyXn22QwI2FEuNR6Fs71rtgGX6hfyBlUh5rrnE2qMmvIFu9EY4Pijr2gUmJEAXCjuNU2Oxku9TryLp9CdHllpsCfN3gD0-Y=@pm.me
Backpatch-through: 10
-rw-r--r-- | doc/src/sgml/mvcc.sgml | 7 | ||||
-rw-r--r-- | doc/src/sgml/ref/comment.sgml | 5 |
2 files changed, 9 insertions, 3 deletions
diff --git a/doc/src/sgml/mvcc.sgml b/doc/src/sgml/mvcc.sgml index cfdcb74221..6c94f6a942 100644 --- a/doc/src/sgml/mvcc.sgml +++ b/doc/src/sgml/mvcc.sgml @@ -950,10 +950,11 @@ ERROR: could not serialize access due to read/write dependencies among transact <para> Acquired by <command>VACUUM</command> (without <option>FULL</option>), <command>ANALYZE</command>, <command>CREATE INDEX CONCURRENTLY</command>, + <command>CREATE STATISTICS</command>, <command>COMMENT ON</command>, <command>REINDEX CONCURRENTLY</command>, - <command>CREATE STATISTICS</command>, and certain <link linkend="sql-alterindex"><command>ALTER - INDEX</command></link> and <link linkend="sql-altertable"><command>ALTER TABLE</command></link> variants (for full - details see the documentation of these commands). + and certain <link linkend="sql-alterindex"><command>ALTER INDEX</command></link> + and <link linkend="sql-altertable"><command>ALTER TABLE</command></link> variants + (for full details see the documentation of these commands). </para> </listitem> </varlistentry> diff --git a/doc/src/sgml/ref/comment.sgml b/doc/src/sgml/ref/comment.sgml index e07fc47fd3..b12796095f 100644 --- a/doc/src/sgml/ref/comment.sgml +++ b/doc/src/sgml/ref/comment.sgml @@ -91,6 +91,11 @@ COMMENT ON </para> <para> + A <literal>SHARE UPDATE EXCLUSIVE</literal> lock is acquired on the + object to be commented. + </para> + + <para> For most kinds of object, only the object's owner can set the comment. Roles don't have owners, so the rule for <literal>COMMENT ON ROLE</literal> is that you must be superuser to comment on a superuser role, or have the |