mirror of
https://github.com/postgres/postgres.git
synced 2026-05-28 04:35:45 -04:00
Document deprecated --wal-directory option for pg_verifybackup
Commit b3cf461b3c renamed --wal-directory to --wal-path but retained
the former as a silent alias. Per project policy, all options,
including deprecated ones, should be documented to assist users
transitioning between versions.
This patch restores --wal-directory to the documentation and --help
output.
Author: Amul Sul <sulamul@gmail.com>
Discussion: https://www.postgresql.org/message-id/flat/E1w3fZp-000gje-31%40gemulon.postgresql.org
This commit is contained in:
parent
a0a0c0c20e
commit
43dc21f76f
2 changed files with 2 additions and 0 deletions
|
|
@ -259,6 +259,7 @@ PostgreSQL documentation
|
|||
<varlistentry>
|
||||
<term><option>-w <replaceable class="parameter">path</replaceable></option></term>
|
||||
<term><option>--wal-path=<replaceable class="parameter">path</replaceable></option></term>
|
||||
<term><option>--wal-directory=<replaceable class="parameter">path</replaceable></option> (deprecated)</term>
|
||||
<listitem>
|
||||
<para>
|
||||
Try to parse WAL files stored in the specified directory or tar
|
||||
|
|
|
|||
|
|
@ -1399,6 +1399,7 @@ usage(void)
|
|||
printf(_(" -q, --quiet do not print any output, except for errors\n"));
|
||||
printf(_(" -s, --skip-checksums skip checksum verification\n"));
|
||||
printf(_(" -w, --wal-path=PATH use specified path for WAL files\n"));
|
||||
printf(_(" --wal-directory=PATH (same as --wal-path, deprecated)\n"));
|
||||
printf(_(" -V, --version output version information, then exit\n"));
|
||||
printf(_(" -?, --help show this help, then exit\n"));
|
||||
printf(_("\nReport bugs to <%s>.\n"), PACKAGE_BUGREPORT);
|
||||
|
|
|
|||
Loading…
Reference in a new issue