From: Tom Lane Date: Tue, 26 Aug 2008 00:03:36 +0000 (+0000) Subject: Fix pg_dump docs to acknowledge that you can use -Z with plain text output. Pointed... X-Git-Tag: REL8_1_14~5 X-Git-Url: http://git.ipfire.org/?a=commitdiff_plain;h=a76e18518067c50d9f9648f83461c8fe86416b8f;p=thirdparty%2Fpostgresql.git Fix pg_dump docs to acknowledge that you can use -Z with plain text output. Pointed out by Daniel Migowski. --- diff --git a/doc/src/sgml/ref/pg_dump.sgml b/doc/src/sgml/ref/pg_dump.sgml index 577ae9b31c3..db89c56ab35 100644 --- a/doc/src/sgml/ref/pg_dump.sgml +++ b/doc/src/sgml/ref/pg_dump.sgml @@ -1,5 +1,5 @@ @@ -497,9 +497,14 @@ PostgreSQL documentation - Specify the compression level to use in archive formats that - support compression. (Currently only the custom archive - format supports compression.) + Specify the compression level to use. Zero means no compression. + For the custom archive format, this specifies compression of + individual table-data segments, and the default is to compress + at a moderate level. + For plain text output, setting a nonzero compression level causes + the entire output file to be compressed, as though it had been + fed through gzip; but the default is not to compress. + The tar archive format currently does not support compression at all.