From 9fbe7d974026925dc6f671e72c47fae3b3e49688 Mon Sep 17 00:00:00 2001 From: Tom Lane Date: Tue, 11 Dec 2018 11:21:36 -0500 Subject: [PATCH] Doc: improve documentation about ALTER LARGE OBJECT requirements. Unlike other ALTER ref pages, this one neglected to mention that ALTER OWNER requires being a member of the new owning role. Per bug #15546 from Stefan Kadow. Discussion: https://postgr.es/m/15546-0558c75fd2025e7c@postgresql.org --- doc/src/sgml/ref/alter_large_object.sgml | 12 +++++++++--- 1 file changed, 9 insertions(+), 3 deletions(-) diff --git a/doc/src/sgml/ref/alter_large_object.sgml b/doc/src/sgml/ref/alter_large_object.sgml index f4a9c9e2a5..356f8a8eab 100644 --- a/doc/src/sgml/ref/alter_large_object.sgml +++ b/doc/src/sgml/ref/alter_large_object.sgml @@ -30,9 +30,15 @@ ALTER LARGE OBJECT large_object_oid ALTER LARGE OBJECT changes the definition of a - large object. The only functionality is to assign a new owner. - You must be superuser or owner of the large object to use - ALTER LARGE OBJECT. + large object. + + + + You must own the large object to use ALTER LARGE OBJECT. + To alter the owner, you must also be a direct or indirect member of the new + owning role. (However, a superuser can alter any large object anyway.) + Currently, the only functionality is to assign a new owner, so both + restrictions always apply.