diff options
Diffstat (limited to 'src/backend/utils/misc/guc_tables.c')
-rw-r--r-- | src/backend/utils/misc/guc_tables.c | 7 |
1 files changed, 4 insertions, 3 deletions
diff --git a/src/backend/utils/misc/guc_tables.c b/src/backend/utils/misc/guc_tables.c index 6f4188599b1..8ae3efbcd8e 100644 --- a/src/backend/utils/misc/guc_tables.c +++ b/src/backend/utils/misc/guc_tables.c @@ -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 |