diff options
author | Jeff Davis <jdavis@postgresql.org> | 2025-03-25 17:36:38 -0700 |
---|---|---|
committer | Jeff Davis <jdavis@postgresql.org> | 2025-03-25 17:36:38 -0700 |
commit | bde2fb797aaebcbe06bf60f330ba5a068f17dda7 (patch) | |
tree | da5a6d7f3ce62b98dd5af915d5fe4b03632910cd /doc/src | |
parent | 27ee6ede6bc9ee287f321d396c5c777083d40ecd (diff) | |
download | postgresql-bde2fb797aaebcbe06bf60f330ba5a068f17dda7.tar.gz postgresql-bde2fb797aaebcbe06bf60f330ba5a068f17dda7.zip |
Add pg_dump --with-{schema|data|statistics} options.
By adding the positive variants of options, in addition to the
negative variants that already exist, users can be explicit about what
pg_dump should produce.
Discussion: https://postgr.es/m/bd0513e4b1ea2b2f2d06f02720c6579711cb62a6.camel@j-davis.com
Reviewed-by: Corey Huinker <corey.huinker@gmail.com>
Reviewed-by: Andres Freund <andres@anarazel.de>
Diffstat (limited to 'doc/src')
-rw-r--r-- | doc/src/sgml/ref/pg_dump.sgml | 27 | ||||
-rw-r--r-- | doc/src/sgml/ref/pg_dumpall.sgml | 27 | ||||
-rw-r--r-- | doc/src/sgml/ref/pg_restore.sgml | 27 |
3 files changed, 81 insertions, 0 deletions
diff --git a/doc/src/sgml/ref/pg_dump.sgml b/doc/src/sgml/ref/pg_dump.sgml index 63cca18711a..bfc1e7b3524 100644 --- a/doc/src/sgml/ref/pg_dump.sgml +++ b/doc/src/sgml/ref/pg_dump.sgml @@ -1233,6 +1233,33 @@ PostgreSQL documentation </varlistentry> <varlistentry> + <term><option>--with-data</option></term> + <listitem> + <para> + Dump data. This is the default. + </para> + </listitem> + </varlistentry> + + <varlistentry> + <term><option>--with-schema</option></term> + <listitem> + <para> + Dump schema (data definitions). This is the default. + </para> + </listitem> + </varlistentry> + + <varlistentry> + <term><option>--with-statistics</option></term> + <listitem> + <para> + Dump statistics. This is the default. + </para> + </listitem> + </varlistentry> + + <varlistentry> <term><option>--on-conflict-do-nothing</option></term> <listitem> <para> diff --git a/doc/src/sgml/ref/pg_dumpall.sgml b/doc/src/sgml/ref/pg_dumpall.sgml index ae5afb3c7d5..765b30a3a66 100644 --- a/doc/src/sgml/ref/pg_dumpall.sgml +++ b/doc/src/sgml/ref/pg_dumpall.sgml @@ -561,6 +561,33 @@ exclude database <replaceable class="parameter">PATTERN</replaceable> </varlistentry> <varlistentry> + <term><option>--with-data</option></term> + <listitem> + <para> + Dump data. This is the default. + </para> + </listitem> + </varlistentry> + + <varlistentry> + <term><option>--with-schema</option></term> + <listitem> + <para> + Dump schema (data definitions). This is the default. + </para> + </listitem> + </varlistentry> + + <varlistentry> + <term><option>--with-statistics</option></term> + <listitem> + <para> + Dump statistics. This is the default. + </para> + </listitem> + </varlistentry> + + <varlistentry> <term><option>--no-unlogged-table-data</option></term> <listitem> <para> diff --git a/doc/src/sgml/ref/pg_restore.sgml b/doc/src/sgml/ref/pg_restore.sgml index 35140187807..c840a807ae9 100644 --- a/doc/src/sgml/ref/pg_restore.sgml +++ b/doc/src/sgml/ref/pg_restore.sgml @@ -806,6 +806,33 @@ PostgreSQL documentation </varlistentry> <varlistentry> + <term><option>--with-data</option></term> + <listitem> + <para> + Dump data. This is the default. + </para> + </listitem> + </varlistentry> + + <varlistentry> + <term><option>--with-schema</option></term> + <listitem> + <para> + Dump schema (data definitions). This is the default. + </para> + </listitem> + </varlistentry> + + <varlistentry> + <term><option>--with-statistics</option></term> + <listitem> + <para> + Dump statistics. This is the default. + </para> + </listitem> + </varlistentry> + + <varlistentry> <term><option>--section=<replaceable class="parameter">sectionname</replaceable></option></term> <listitem> <para> |