diff options
author | Michael Paquier <michael@paquier.xyz> | 2021-05-19 09:38:48 +0900 |
---|---|---|
committer | Michael Paquier <michael@paquier.xyz> | 2021-05-19 09:38:48 +0900 |
commit | 694da1983e9569b2a2f96cd786ead6b8dba31f1d (patch) | |
tree | 30fa67bdfae2bc824611406c1bfedc8b60102211 /doc/src | |
parent | 2e7c17837064297f25c427d58154dce8d4287302 (diff) | |
download | postgresql-694da1983e9569b2a2f96cd786ead6b8dba31f1d.tar.gz postgresql-694da1983e9569b2a2f96cd786ead6b8dba31f1d.zip |
Add --no-toast-compression to pg_dumpall
This is an oversight from bbe0a81d, where the equivalent option exists
in pg_dump. This is useful to be able to reset the compression methods
cluster-wide when restoring the data based on default_toast_compression.
Reviewed-by: Daniel Gustafsson, Tom Lane
Discussion: https://postgr.es/m/YKHC+qCJvzCRVCpY@paquier.xyz
Diffstat (limited to 'doc/src')
-rw-r--r-- | doc/src/sgml/ref/pg_dumpall.sgml | 12 |
1 files changed, 12 insertions, 0 deletions
diff --git a/doc/src/sgml/ref/pg_dumpall.sgml b/doc/src/sgml/ref/pg_dumpall.sgml index 3c2f9c774f7..805c47d5c1e 100644 --- a/doc/src/sgml/ref/pg_dumpall.sgml +++ b/doc/src/sgml/ref/pg_dumpall.sgml @@ -459,6 +459,18 @@ PostgreSQL documentation </varlistentry> <varlistentry> + <term><option>--no-toast-compression</option></term> + <listitem> + <para> + Do not output commands to set <acronym>TOAST</acronym> compression + methods. + With this option, all objects will be created using whichever + compression method is the default during restore. + </para> + </listitem> + </varlistentry> + + <varlistentry> <term><option>--no-unlogged-table-data</option></term> <listitem> <para> |