diff options
Diffstat (limited to 'contrib')
-rw-r--r-- | contrib/auth_delay/auth_delay.c | 3 | ||||
-rw-r--r-- | contrib/auto_explain/auto_explain.c | 6 | ||||
-rw-r--r-- | contrib/pg_stat_statements/pg_stat_statements.c | 4 | ||||
-rw-r--r-- | contrib/sepgsql/hooks.c | 2 |
4 files changed, 14 insertions, 1 deletions
diff --git a/contrib/auth_delay/auth_delay.c b/contrib/auth_delay/auth_delay.c index 199de9bb391..ca388c44984 100644 --- a/contrib/auth_delay/auth_delay.c +++ b/contrib/auth_delay/auth_delay.c @@ -53,7 +53,7 @@ auth_delay_checks(Port *port, int status) void _PG_init(void) { - /* Define custome GUC variables */ + /* Define custom GUC variables */ DefineCustomIntVariable("auth_delay.milliseconds", "Milliseconds to delay before reporting authentication failure", NULL, @@ -63,6 +63,7 @@ _PG_init(void) PGC_SIGHUP, GUC_UNIT_MS, NULL, + NULL, NULL); /* Install Hooks */ original_client_auth_hook = ClientAuthentication_hook; diff --git a/contrib/auto_explain/auto_explain.c b/contrib/auto_explain/auto_explain.c index 78e604e7bc4..b3206987484 100644 --- a/contrib/auto_explain/auto_explain.c +++ b/contrib/auto_explain/auto_explain.c @@ -74,6 +74,7 @@ _PG_init(void) PGC_SUSET, GUC_UNIT_MS, NULL, + NULL, NULL); DefineCustomBoolVariable("auto_explain.log_analyze", @@ -84,6 +85,7 @@ _PG_init(void) PGC_SUSET, 0, NULL, + NULL, NULL); DefineCustomBoolVariable("auto_explain.log_verbose", @@ -94,6 +96,7 @@ _PG_init(void) PGC_SUSET, 0, NULL, + NULL, NULL); DefineCustomBoolVariable("auto_explain.log_buffers", @@ -104,6 +107,7 @@ _PG_init(void) PGC_SUSET, 0, NULL, + NULL, NULL); DefineCustomEnumVariable("auto_explain.log_format", @@ -115,6 +119,7 @@ _PG_init(void) PGC_SUSET, 0, NULL, + NULL, NULL); DefineCustomBoolVariable("auto_explain.log_nested_statements", @@ -125,6 +130,7 @@ _PG_init(void) PGC_SUSET, 0, NULL, + NULL, NULL); EmitWarningsOnPlaceholders("auto_explain"); diff --git a/contrib/pg_stat_statements/pg_stat_statements.c b/contrib/pg_stat_statements/pg_stat_statements.c index 0390ec4c8ed..87cf8c55cf4 100644 --- a/contrib/pg_stat_statements/pg_stat_statements.c +++ b/contrib/pg_stat_statements/pg_stat_statements.c @@ -219,6 +219,7 @@ _PG_init(void) PGC_POSTMASTER, 0, NULL, + NULL, NULL); DefineCustomEnumVariable("pg_stat_statements.track", @@ -230,6 +231,7 @@ _PG_init(void) PGC_SUSET, 0, NULL, + NULL, NULL); DefineCustomBoolVariable("pg_stat_statements.track_utility", @@ -240,6 +242,7 @@ _PG_init(void) PGC_SUSET, 0, NULL, + NULL, NULL); DefineCustomBoolVariable("pg_stat_statements.save", @@ -250,6 +253,7 @@ _PG_init(void) PGC_SIGHUP, 0, NULL, + NULL, NULL); EmitWarningsOnPlaceholders("pg_stat_statements"); diff --git a/contrib/sepgsql/hooks.c b/contrib/sepgsql/hooks.c index 27e85d25b1d..5dc8a3ecaa8 100644 --- a/contrib/sepgsql/hooks.c +++ b/contrib/sepgsql/hooks.c @@ -394,6 +394,7 @@ _PG_init(void) PGC_SIGHUP, GUC_NOT_IN_SAMPLE, NULL, + NULL, NULL); /* @@ -412,6 +413,7 @@ _PG_init(void) PGC_USERSET, GUC_NOT_IN_SAMPLE, NULL, + NULL, NULL); /* |