diff options
author | Michael Paquier <michael@paquier.xyz> | 2022-08-15 13:37:40 +0900 |
---|---|---|
committer | Michael Paquier <michael@paquier.xyz> | 2022-08-15 13:37:40 +0900 |
commit | bcf7eb99bbf15954a92df0a4405713d561402be2 (patch) | |
tree | e61586e578bb584957f31363a2490dad5611e653 /src | |
parent | 9fe285f8597d4a3ab3fce9223891b2af01a3393b (diff) | |
download | postgresql-bcf7eb99bbf15954a92df0a4405713d561402be2.tar.gz postgresql-bcf7eb99bbf15954a92df0a4405713d561402be2.zip |
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.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/backend/main/main.c b/src/backend/main/main.c index da3dae9e250..84f93cd1556 100644 --- a/src/backend/main/main.c +++ b/src/backend/main/main.c @@ -334,7 +334,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")); |