diff options
author | Tom Lane | 2021-12-27 19:39:08 +0000 |
---|---|---|
committer | Tom Lane | 2021-12-27 19:39:08 +0000 |
commit | 5609cc01c69b80f8788771dc6f5696a459469119 (patch) | |
tree | 0279a68e9ef62e1b145fac7733b869ddce8e19df /contrib/auth_delay/auth_delay.c | |
parent | 2ed8a8cc5b634d33ea07d681c6b02213da07f792 (diff) |
Rename EmitWarningsOnPlaceholders() to MarkGUCPrefixReserved().
This seems like a clearer name for what it does now.
Provide a compatibility macro so that extensions don't have to convert
to the new name right away.
Discussion: https://postgr.es/m/[email protected]
Diffstat (limited to 'contrib/auth_delay/auth_delay.c')
-rw-r--r-- | contrib/auth_delay/auth_delay.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/contrib/auth_delay/auth_delay.c b/contrib/auth_delay/auth_delay.c index d11dd1e416e..ca1e483d61a 100644 --- a/contrib/auth_delay/auth_delay.c +++ b/contrib/auth_delay/auth_delay.c @@ -68,7 +68,7 @@ _PG_init(void) NULL, NULL); - EmitWarningsOnPlaceholders("auth_delay"); + MarkGUCPrefixReserved("auth_delay"); /* Install Hooks */ original_client_auth_hook = ClientAuthentication_hook; |