Add pg_combinebackup --copy option
Introduces --copy as an alternative to --clone and --copy-file-range. This option simply picks the default mode to copy files, as if none of the options was specified. This makes pg_combinebackup options more consistent with pg_upgrade, and it makes testing simpler. Reported-by: Peter Eisentraut Discussion: https://postgr.es/m/48da4a1f-ccd9-4988-9622-24f37b1de2b4%40eisentraut.org
This commit is contained in:
parent
e99e840b82
commit
a9577bae6b
@ -162,6 +162,16 @@ PostgreSQL documentation
|
||||
</listitem>
|
||||
</varlistentry>
|
||||
|
||||
<varlistentry>
|
||||
<term><option>--copy</option></term>
|
||||
<listitem>
|
||||
<para>
|
||||
Perform regular file copy. This is the default. (See also
|
||||
<option>--copy-file-range</option> and <option>--clone</option>.)
|
||||
</para>
|
||||
</listitem>
|
||||
</varlistentry>
|
||||
|
||||
<varlistentry>
|
||||
<term><option>--copy-file-range</option></term>
|
||||
<listitem>
|
||||
|
@ -139,7 +139,8 @@ main(int argc, char *argv[])
|
||||
{"no-manifest", no_argument, NULL, 2},
|
||||
{"sync-method", required_argument, NULL, 3},
|
||||
{"clone", no_argument, NULL, 4},
|
||||
{"copy-file-range", no_argument, NULL, 5},
|
||||
{"copy", no_argument, NULL, 5},
|
||||
{"copy-file-range", no_argument, NULL, 6},
|
||||
{NULL, 0, NULL, 0}
|
||||
};
|
||||
|
||||
@ -209,6 +210,9 @@ main(int argc, char *argv[])
|
||||
opt.copy_method = COPY_METHOD_CLONE;
|
||||
break;
|
||||
case 5:
|
||||
opt.copy_method = COPY_METHOD_COPY;
|
||||
break;
|
||||
case 6:
|
||||
opt.copy_method = COPY_METHOD_COPY_FILE_RANGE;
|
||||
break;
|
||||
default:
|
||||
@ -763,6 +767,7 @@ help(const char *progname)
|
||||
printf(_(" -T, --tablespace-mapping=OLDDIR=NEWDIR\n"
|
||||
" relocate tablespace in OLDDIR to NEWDIR\n"));
|
||||
printf(_(" --clone clone (reflink) instead of copying files\n"));
|
||||
printf(_(" --copy copy files (default)\n"));
|
||||
printf(_(" --copy-file-range copy using copy_file_range() syscall\n"));
|
||||
printf(_(" --manifest-checksums=SHA{224,256,384,512}|CRC32C|NONE\n"
|
||||
" use algorithm for manifest checksums\n"));
|
||||
|
Loading…
x
Reference in New Issue
Block a user