diff options
| author | Stephen Frost <sfrost@snowman.net> | 2016-11-29 11:09:35 -0500 |
|---|---|---|
| committer | Stephen Frost <sfrost@snowman.net> | 2016-11-29 11:09:35 -0500 |
| commit | 4fafa579b0ab411f4cd2f30c57205d9b0ac27340 (patch) | |
| tree | 6286962a1ed4ab1b73d1ad24765f718cd54429f9 /doc/src | |
| parent | d6c8b34e956864d52780f0db9f8cfe3b2f4411b0 (diff) | |
Add --no-blobs option to pg_dump
Add an option to exclude blobs when running pg_dump. By default, blobs
are included but this option can be used to exclude them while keeping
the rest of the dump.
Commment updates and regression tests from me.
Author: Guillaume Lelarge
Reviewed-by: Amul Sul
Discussion: https://postgr.es/m/VisenaEmail.48.49926ea6f91dceb6.15355a48249@tc7-visena
Diffstat (limited to 'doc/src')
| -rw-r--r-- | doc/src/sgml/ref/pg_dump.sgml | 16 |
1 files changed, 16 insertions, 0 deletions
diff --git a/doc/src/sgml/ref/pg_dump.sgml b/doc/src/sgml/ref/pg_dump.sgml index 04b312445da..f6225d23c80 100644 --- a/doc/src/sgml/ref/pg_dump.sgml +++ b/doc/src/sgml/ref/pg_dump.sgml @@ -148,6 +148,22 @@ PostgreSQL documentation </varlistentry> <varlistentry> + <term><option>-B</></term> + <term><option>--no-blobs</></term> + <listitem> + <para> + Exclude large objects in the dump. + </para> + + <para> + When both <option>-b</> and <option>-B</> are given, the behavior + is to output large objects, when data is being dumped, see the + <option>-b</> documentation. + </para> + </listitem> + </varlistentry> + + <varlistentry> <term><option>-c</option></term> <term><option>--clean</option></term> <listitem> |
