diff options
| author | Robert Haas | 2023-01-20 20:32:08 +0000 |
|---|---|---|
| committer | Robert Haas | 2023-01-20 20:32:08 +0000 |
| commit | fe00fec1f5d78a5cfe46ac72dc284ed4cc477be1 (patch) | |
| tree | f0040cae7766032cd67194e19e81a67187c28e06 /src/include/postmaster | |
| parent | 6c1d5ba4867828b387799a291cea9aaee2a8e3fc (diff) | |
Rename ReservedBackends variable to SuperuserReservedConnections.
This is in preparation for adding a new reserved_connections GUC,
but aligning the GUC name with the variable name is also a good
idea on general principle.
Patch by Nathan Bossart. Reviewed by Tushar Ahuja and by me.
Discussion: http://postgr.es/m/20230119194601.GA4105788@nathanxps13
Diffstat (limited to 'src/include/postmaster')
| -rw-r--r-- | src/include/postmaster/postmaster.h | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/include/postmaster/postmaster.h b/src/include/postmaster/postmaster.h index 203177e1fff..0e4b8ded344 100644 --- a/src/include/postmaster/postmaster.h +++ b/src/include/postmaster/postmaster.h @@ -15,7 +15,7 @@ /* GUC options */ extern PGDLLIMPORT bool EnableSSL; -extern PGDLLIMPORT int ReservedBackends; +extern PGDLLIMPORT int SuperuserReservedConnections; extern PGDLLIMPORT int PostPortNumber; extern PGDLLIMPORT int Unix_socket_permissions; extern PGDLLIMPORT char *Unix_socket_group; |
