Received: from malur.postgresql.org ([217.196.149.56]) by arkaria.postgresql.org with esmtps (TLS1.3) tls TLS_ECDHE_RSA_WITH_AES_256_GCM_SHA384 (Exim 4.96) (envelope-from ) id 1w2tsh-000iAY-2t for pgsql-bugs@arkaria.postgresql.org; Wed, 18 Mar 2026 16:36:27 +0000 Received: from localhost ([127.0.0.1] helo=malur.postgresql.org) by malur.postgresql.org with esmtp (Exim 4.96) (envelope-from ) id 1w2tsg-00CSt6-25 for pgsql-bugs@arkaria.postgresql.org; Wed, 18 Mar 2026 16:36:26 +0000 Received: from makus.postgresql.org ([2001:4800:3e1:1::229]) by malur.postgresql.org with esmtps (TLS1.3) tls TLS_ECDHE_RSA_WITH_AES_256_GCM_SHA384 (Exim 4.96) (envelope-from ) id 1w2tsg-00CSsy-1J for pgsql-bugs@lists.postgresql.org; Wed, 18 Mar 2026 16:36:26 +0000 Received: from sss.pgh.pa.us ([68.162.161.243]) by makus.postgresql.org with esmtps (TLS1.3) tls TLS_ECDHE_RSA_WITH_AES_256_GCM_SHA384 (Exim 4.98.2) (envelope-from ) id 1w2tsd-00000000OAJ-0tCy for pgsql-bugs@lists.postgresql.org; Wed, 18 Mar 2026 16:36:25 +0000 Received: from sss1.sss.pgh.pa.us (localhost [127.0.0.1]) by sss.pgh.pa.us (8.15.2/8.15.2) with ESMTP id 62IGaHT9770634; Wed, 18 Mar 2026 12:36:17 -0400 From: Tom Lane To: Nathan Bossart cc: Robert Haas , Peter Eisentraut , "David G. Johnston" , "Ing. Marijo Kristo" , PostgreSQL Bug List Subject: Re: Revoke Connect Privilege from Database not working In-reply-to: References: <3467676.1744041977@sss.pgh.pa.us> <1933586.1768950341@sss.pgh.pa.us> <2222571.1769014621@sss.pgh.pa.us> Comments: In-reply-to Nathan Bossart message dated "Tue, 17 Mar 2026 19:50:33 -0500" MIME-Version: 1.0 Content-Type: text/plain; charset="us-ascii" Content-ID: <770632.1773851777.1@sss.pgh.pa.us> Date: Wed, 18 Mar 2026 12:36:17 -0400 Message-ID: <770633.1773851777@sss.pgh.pa.us> List-Id: List-Help: List-Subscribe: List-Post: List-Owner: List-Archive: Archived-At: Precedence: bulk Nathan Bossart writes: > I went ahead and tried adding docs, tests, and a commit message. Thanks! I was about to conclude that "silence means assent" and do that work, but you beat me to it. Your changes look fine, except that where you have + ... A role can only attribute a grant + to another role if they possess the privileges of that role. the word "possess" seems a little ambiguous --- it's not clear whether it means SET or INHERIT privileges. The grammar nerd in me doesn't like "they" either. How about s/they possess/it inherits/ ? (likewise in revoke.sgml) > The > documentation for these commands might need a revamp. They seem to meander > a bit, probably due to decades of organic development. But that's probably > not this patch's problem. Agreed, seems like a task for another day. regards, tom lane