summaryrefslogtreecommitdiff
path: root/src
diff options
context:
space:
mode:
authorMichael Paquier2022-08-15 04:37:46 +0000
committerMichael Paquier2022-08-15 04:37:46 +0000
commit1a05596eaaaaaa1e5596ef4c020a75ffaa762e32 (patch)
treee9719de91b1433dee7ad4d4f1acf86227c9fb67a /src
parentd3cf15dfccc508874255fe3c79005900c37a1e76 (diff)
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
Diffstat (limited to 'src')
-rw-r--r--src/backend/main/main.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/src/backend/main/main.c b/src/backend/main/main.c
index f9d673f881c..1df2f4d34c0 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"));