Fix pg_dump docs to acknowledge that you can use -Z with plain text output. Pointed...
authorTom Lane
Tue, 26 Aug 2008 00:03:15 +0000 (00:03 +0000)
committerTom Lane
Tue, 26 Aug 2008 00:03:15 +0000 (00:03 +0000)
doc/src/sgml/ref/pg_dump.sgml

index 39c64af810878063a16abf5b77b6f658487ea4aa..a419d8d9d2da52c9db72d5ecf79eb47e47a8b1e5 100644 (file)
@@ -1,5 +1,5 @@
 
 
@@ -538,9 +538,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.