mirror of
https://github.com/postgres/postgres.git
synced 2025-06-25 01:02:05 +03:00
Convert some extern variables to static
These probably should have been static all along, it was only forgotten out of sloppiness. Reviewed-by: Andres Freund <andres@anarazel.de> Discussion: https://www.postgresql.org/message-id/flat/e0a62134-83da-4ba4-8cdb-ceb0111c95ce@eisentraut.org
This commit is contained in:
@ -517,7 +517,8 @@ bool check_function_bodies = true;
|
||||
* This GUC exists solely for backward compatibility, check its definition for
|
||||
* details.
|
||||
*/
|
||||
bool default_with_oids = false;
|
||||
static bool default_with_oids = false;
|
||||
|
||||
bool current_role_is_superuser;
|
||||
|
||||
int log_min_error_statement = ERROR;
|
||||
@ -555,7 +556,7 @@ int tcp_user_timeout;
|
||||
* This avoids breaking compatibility with clients that have never supported
|
||||
* renegotiation and therefore always try to zero it.
|
||||
*/
|
||||
int ssl_renegotiation_limit;
|
||||
static int ssl_renegotiation_limit;
|
||||
|
||||
/*
|
||||
* This really belongs in pg_shmem.c, but is defined here so that it doesn't
|
||||
@ -563,7 +564,7 @@ int ssl_renegotiation_limit;
|
||||
*/
|
||||
int huge_pages = HUGE_PAGES_TRY;
|
||||
int huge_page_size;
|
||||
int huge_pages_status = HUGE_PAGES_UNKNOWN;
|
||||
static int huge_pages_status = HUGE_PAGES_UNKNOWN;
|
||||
|
||||
/*
|
||||
* These variables are all dummies that don't do anything, except in some
|
||||
|
Reference in New Issue
Block a user