From 22297cd65fa5efeffebcfaebfdda174dcdbd821a Mon Sep 17 00:00:00 2001 From: Bruce Momjian Date: Thu, 31 Aug 2023 15:14:18 -0400 Subject: [PATCH] doc: PG 16 relnotes: clarify LOCK TABLE description Backpatch-through: 16 only --- doc/src/sgml/release-16.sgml | 15 ++++++++------- 1 file changed, 8 insertions(+), 7 deletions(-) diff --git a/doc/src/sgml/release-16.sgml b/doc/src/sgml/release-16.sgml index 2eb172eaa63..9816012631c 100644 --- a/doc/src/sgml/release-16.sgml +++ b/doc/src/sgml/release-16.sgml @@ -948,14 +948,15 @@ Author: Jeff Davis - Previously the ability to perform LOCK - TABLE at various lock levels was bound to - specific query-type permissions. For example, LOCK + TABLE at various lock levels was limited to the + lock levels required by the commands they had permission + to execute on the table. For example, someone with UPDATE - could perform all lock levels except - ACCESS SHARE, which required SELECT permissions. - Now UPDATE can issue all lock levels. MORE? + permission could perform all lock levels except ACCESS + SHARE, even though it was a lesser lock level. Now users + can issue lesser lock levels if they already have permission for + greater lock levels.