diff options
author | Peter Eisentraut <peter@eisentraut.org> | 2021-05-14 10:21:28 +0200 |
---|---|---|
committer | Peter Eisentraut <peter@eisentraut.org> | 2021-05-14 10:26:41 +0200 |
commit | 09ae329957b739dfbaf722eb5624d0a71fdff3b4 (patch) | |
tree | b80b22e8adc10e24e68296db559170a223300215 /src/bin/pg_dump/pg_dump.c | |
parent | 521d08a21a2b1ba7038ccc815b8bccc3c9be1351 (diff) | |
download | postgresql-09ae329957b739dfbaf722eb5624d0a71fdff3b4.tar.gz postgresql-09ae329957b739dfbaf722eb5624d0a71fdff3b4.zip |
Message style improvements
Diffstat (limited to 'src/bin/pg_dump/pg_dump.c')
-rw-r--r-- | src/bin/pg_dump/pg_dump.c | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/src/bin/pg_dump/pg_dump.c b/src/bin/pg_dump/pg_dump.c index e384690d94a..339c3937180 100644 --- a/src/bin/pg_dump/pg_dump.c +++ b/src/bin/pg_dump/pg_dump.c @@ -1070,7 +1070,7 @@ help(const char *progname) printf(_(" --no-subscriptions do not dump subscriptions\n")); printf(_(" --no-synchronized-snapshots do not use synchronized snapshots in parallel jobs\n")); printf(_(" --no-tablespaces do not dump tablespace assignments\n")); - printf(_(" --no-toast-compression do not dump toast compression methods\n")); + printf(_(" --no-toast-compression do not dump TOAST compression methods\n")); printf(_(" --no-unlogged-table-data do not dump unlogged table data\n")); printf(_(" --on-conflict-do-nothing add ON CONFLICT DO NOTHING to INSERT commands\n")); printf(_(" --quote-all-identifiers quote all identifiers, even if not key words\n")); @@ -16758,7 +16758,7 @@ dumpIndex(Archive *fout, const IndxInfo *indxinfo) if (!parsePGArray(indstatvals, &indstatvalsarray, &nstatvals)) fatal("could not parse index statistic values"); if (nstatcols != nstatvals) - fatal("mismatched number of columns and values for index stats"); + fatal("mismatched number of columns and values for index statistics"); for (j = 0; j < nstatcols; j++) { |