diff options
author | Fujii Masao <fujii@postgresql.org> | 2016-08-01 17:36:14 +0900 |
---|---|---|
committer | Fujii Masao <fujii@postgresql.org> | 2016-08-01 17:37:41 +0900 |
commit | dbe56f2a1d8774b38e0277eb13e1cf4585ba489c (patch) | |
tree | 434f3cbd61e4ed3b05fe1f45a0ed99aedcbbff75 /doc/src | |
parent | ee6fef2cf19b1983fb68b80cc40332743fce4533 (diff) |
Fix pg_basebackup so that it accepts 0 as a valid compression level.
The help message for pg_basebackup specifies that the numbers 0 through 9
are accepted as valid values of -Z option. But, previously -Z 0 was rejected
as an invalid compression level.
Per discussion, it's better to make pg_basebackup treat 0 as valid
compression level meaning no compression, like pg_dump.
Back-patch to all supported versions.
Reported-By: Jeff Janes
Reviewed-By: Amit Kapila
Discussion: CAMkU=1x+GwjSayc57v6w87ij6iRGFWt=hVfM0B64b1_bPVKRqg@mail.gmail.com
Diffstat (limited to 'doc/src')
-rw-r--r-- | doc/src/sgml/ref/pg_basebackup.sgml | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/doc/src/sgml/ref/pg_basebackup.sgml b/doc/src/sgml/ref/pg_basebackup.sgml index 642fccf325f..fb1e7340d7d 100644 --- a/doc/src/sgml/ref/pg_basebackup.sgml +++ b/doc/src/sgml/ref/pg_basebackup.sgml @@ -343,7 +343,7 @@ PostgreSQL documentation <listitem> <para> Enables gzip compression of tar file output, and specifies the - compression level (1 through 9, 9 being best + compression level (0 through 9, 0 being no compression and 9 being best compression). Compression is only available when using the tar format. </para> |