mirror of
https://github.com/postgres/postgres.git
synced 2025-07-31 22:04:40 +03:00
Introduce long options in pg_archivecleanup
This patch is a preliminary refactoring for an upcoming patch aimed at adding new options to this tool, and using long options for these is more user-friendly. The existing short options gain long flavors, as of: * -d/--debug * -n/--dry-run * -x/--strip-extension Author: Atsushi Torikoshi Reviewed-by: Fujii Masao, Kyotaro Horiguchi, Michael Paquier Discussion: https://postgr.es/m/d660ef741ce3d82f3b4283f1cafd576c@oss.nttdata.com
This commit is contained in:
@ -95,6 +95,7 @@ pg_archivecleanup: removing file "archive/00000001000000370000000E"
|
||||
|
||||
<varlistentry>
|
||||
<term><option>-d</option></term>
|
||||
<term><option>--debug</option></term>
|
||||
<listitem>
|
||||
<para>
|
||||
Print lots of debug logging output on <filename>stderr</filename>.
|
||||
@ -104,6 +105,7 @@ pg_archivecleanup: removing file "archive/00000001000000370000000E"
|
||||
|
||||
<varlistentry>
|
||||
<term><option>-n</option></term>
|
||||
<term><option>--dry-run</option></term>
|
||||
<listitem>
|
||||
<para>
|
||||
Print the names of the files that would have been removed on <filename>stdout</filename> (performs a dry run).
|
||||
@ -122,7 +124,8 @@ pg_archivecleanup: removing file "archive/00000001000000370000000E"
|
||||
</varlistentry>
|
||||
|
||||
<varlistentry>
|
||||
<term><option>-x</option> <replaceable>extension</replaceable></term>
|
||||
<term><option>-x <replaceable class="parameter">extension</replaceable></option></term>
|
||||
<term><option>--strip-extension=<replaceable class="parameter">extension</replaceable></option></term>
|
||||
<listitem>
|
||||
<para>
|
||||
Provide an extension
|
||||
|
Reference in New Issue
Block a user