diff options
author | Robert Haas | 2023-01-20 20:36:36 +0000 |
---|---|---|
committer | Robert Haas | 2023-01-20 20:39:13 +0000 |
commit | 6e2775e4d4e47775f0d933e4a93c148024a3bc63 (patch) | |
tree | 41a9343dad0b900d899ebd04e9d22afd7976768f /doc/src/sgml/user-manag.sgml | |
parent | fe00fec1f5d78a5cfe46ac72dc284ed4cc477be1 (diff) |
Add new GUC reserved_connections.
This provides a way to reserve connection slots for non-superusers.
The slots reserved via the new GUC are available only to users who
have the new predefined role pg_use_reserved_connections.
superuser_reserved_connections remains as a final reserve in case
reserved_connections has been exhausted.
Patch by Nathan Bossart. Reviewed by Tushar Ahuja and by me.
Discussion: http://postgr.es/m/20230119194601.GA4105788@nathanxps13
Diffstat (limited to 'doc/src/sgml/user-manag.sgml')
-rw-r--r-- | doc/src/sgml/user-manag.sgml | 5 |
1 files changed, 5 insertions, 0 deletions
diff --git a/doc/src/sgml/user-manag.sgml b/doc/src/sgml/user-manag.sgml index 71a2d8f2985..002c1e3affb 100644 --- a/doc/src/sgml/user-manag.sgml +++ b/doc/src/sgml/user-manag.sgml @@ -689,6 +689,11 @@ DROP ROLE doomed_role; and <link linkend="sql-lock"><command>LOCK TABLE</command></link> on all relations.</entry> </row> + <row> + <entry>pg_use_reserved_connections</entry> + <entry>Allow use of connection slots reserved via + <xref linkend="guc-reserved-connections"/>.</entry> + </row> </tbody> </tgroup> </table> |