diff options
author | Nathan Bossart <nathan@postgresql.org> | 2025-05-07 13:36:51 -0500 |
---|---|---|
committer | Nathan Bossart <nathan@postgresql.org> | 2025-05-07 13:36:51 -0500 |
commit | acea3fc49f006a08e6c540ac0bacc2c2577a5ff9 (patch) | |
tree | b902b1942771498eef806195fb38ae6a0a421c7e /doc/src | |
parent | ab42d643c14509cf1345588f55d798284b11a91e (diff) | |
download | postgresql-acea3fc49f006a08e6c540ac0bacc2c2577a5ff9.tar.gz postgresql-acea3fc49f006a08e6c540ac0bacc2c2577a5ff9.zip |
pg_dumpall: Add --sequence-data.
I recently added this option to pg_dump, but I forgot to add it to
pg_dumpall, too. There's probably little use for it at the moment,
but we will need it if/when we teach pg_upgrade to use pg_dumpall
to dump the database schemas.
Oversight in commit 9c49f0e8cd.
Reviewed-by: Michael Paquier <michael@paquier.xyz>
Discussion: https://postgr.es/m/aBE8rHFo922xQUwh%40nathan
Diffstat (limited to 'doc/src')
-rw-r--r-- | doc/src/sgml/ref/pg_dumpall.sgml | 11 |
1 files changed, 11 insertions, 0 deletions
diff --git a/doc/src/sgml/ref/pg_dumpall.sgml b/doc/src/sgml/ref/pg_dumpall.sgml index 5df4b04287b..8c5141d036c 100644 --- a/doc/src/sgml/ref/pg_dumpall.sgml +++ b/doc/src/sgml/ref/pg_dumpall.sgml @@ -696,6 +696,17 @@ exclude database <replaceable class="parameter">PATTERN</replaceable> </varlistentry> <varlistentry> + <term><option>--sequence-data</option></term> + <listitem> + <para> + Include sequence data in the dump. This is the default behavior except + when <option>--no-data</option>, <option>--schema-only</option>, or + <option>--statistics-only</option> is specified. + </para> + </listitem> + </varlistentry> + + <varlistentry> <term><option>--use-set-session-authorization</option></term> <listitem> <para> |