From: Michael Paquier Date: Mon, 15 Aug 2022 04:37:42 +0000 (+0900) Subject: Fix outdated --help message for postgres -f X-Git-Tag: REL_12_13~84 X-Git-Url: http://git.ipfire.org/cgi-bin/gitweb.cgi?a=commitdiff_plain;h=e2915afbd701e548d985ce8b834cbd13ff802ea1;p=thirdparty%2Fpostgresql.git Fix outdated --help message for postgres -f This option switch supports a total of 8 values, as told by set_plan_disabling_options() and the documentation, but this was not reflected in the output generated by --help. Author: Junwang Zhao Discussion: https://postgr.es/m/CAEG8a3+pT3cWzyjzKs184L1XMNm8NDnoJLiSjAYSO7XqpRh_vA@mail.gmail.com Backpatch-through: 10 --- diff --git a/src/backend/main/main.c b/src/backend/main/main.c index 7b18f8c7582..6ded6fc3eec 100644 --- a/src/backend/main/main.c +++ b/src/backend/main/main.c @@ -352,7 +352,7 @@ help(const char *progname) printf(_(" -?, --help show this help, then exit\n")); printf(_("\nDeveloper options:\n")); - printf(_(" -f s|i|n|m|h forbid use of some plan types\n")); + printf(_(" -f s|i|o|b|t|n|m|h forbid use of some plan types\n")); printf(_(" -n do not reinitialize shared memory after abnormal exit\n")); printf(_(" -O allow system table structure changes\n")); printf(_(" -P disable system indexes\n"));