From: Michael Paquier Date: Mon, 2 May 2022 11:16:19 +0000 (+0900) Subject: basebackup_to_shell: Add missing MarkGUCPrefixReserved() X-Git-Tag: REL_15_BETA1~90 X-Git-Url: http://git.ipfire.org/?a=commitdiff_plain;h=7307988abdff6c948d87e6d9dc9aaaa1f4c5283f;p=thirdparty%2Fpostgresql.git basebackup_to_shell: Add missing MarkGUCPrefixReserved() Oversight in c6306db24, as per a requirement from 88103567. All the other modules in the tree, be they in contrib/ or src/test/modules/, already do that. Author: Bharath Rupireddy Discussion: https://postgr.es/m/CALj2ACUy7q_KwSMda+2SHPSWep32tNUM8cXGRS3=-Vfodo9OUg@mail.gmail.com --- diff --git a/contrib/basebackup_to_shell/basebackup_to_shell.c b/contrib/basebackup_to_shell/basebackup_to_shell.c index f0ddef19870..fd462a8ff4d 100644 --- a/contrib/basebackup_to_shell/basebackup_to_shell.c +++ b/contrib/basebackup_to_shell/basebackup_to_shell.c @@ -86,6 +86,8 @@ _PG_init(void) 0, NULL, NULL, NULL); + MarkGUCPrefixReserved("basebackup_to_shell"); + BaseBackupAddTarget("shell", shell_check_detail, shell_get_sink); }