summaryrefslogtreecommitdiff
path: root/doc
diff options
context:
space:
mode:
authorFujii Masao2016-08-01 08:36:14 +0000
committerFujii Masao2016-08-01 08:38:05 +0000
commit366f4a96248dc85a37b17c78ce41d2a531377ba0 (patch)
treee92a217905890357117326b1a0eb854a04d25a5a /doc
parent7004e1ccd445378481c78a143a71aac77947d83e (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')
-rw-r--r--doc/src/sgml/ref/pg_basebackup.sgml2
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 11b7c37c25c..34d2f0bb6c4 100644
--- a/doc/src/sgml/ref/pg_basebackup.sgml
+++ b/doc/src/sgml/ref/pg_basebackup.sgml
@@ -185,7 +185,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>