diff options
author | Michael Paquier <michael@paquier.xyz> | 2022-01-17 16:03:12 +0900 |
---|---|---|
committer | Michael Paquier <michael@paquier.xyz> | 2022-01-17 16:03:12 +0900 |
commit | ca86a63d207aca1f52ff13a1ce13854681d1bbf9 (patch) | |
tree | dba31247042321d3582f2e47a648711aaaafba9c | |
parent | 2158628864cfbc03c838834a46c193bde5807361 (diff) | |
download | postgresql-ca86a63d207aca1f52ff13a1ce13854681d1bbf9.tar.gz postgresql-ca86a63d207aca1f52ff13a1ce13854681d1bbf9.zip |
Fix typo in pg_dumpall.c
Oversight in 2158628.
Reported-by: Justin Pryzby
Discussion: https://postgr.es/m/20220117062006.GY14051@telsasoft.com
-rw-r--r-- | src/bin/pg_dump/pg_dumpall.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/bin/pg_dump/pg_dumpall.c b/src/bin/pg_dump/pg_dumpall.c index 1cab0dfdc75..94852e7cdbb 100644 --- a/src/bin/pg_dump/pg_dumpall.c +++ b/src/bin/pg_dump/pg_dumpall.c @@ -653,7 +653,7 @@ help(void) printf(_(" --no-security-labels do not dump security label assignments\n")); printf(_(" --no-subscriptions do not dump subscriptions\n")); printf(_(" --no-sync do not wait for changes to be written safely to disk\n")); - printf(_(" --no-tables-access-method do not dump table access methods\n")); + printf(_(" --no-table-access-method do not dump table access methods\n")); printf(_(" --no-tablespaces do not dump tablespace assignments\n")); printf(_(" --no-toast-compression do not dump TOAST compression methods\n")); printf(_(" --no-unlogged-table-data do not dump unlogged table data\n")); |