1
0
mirror of https://github.com/postgres/postgres.git synced 2025-07-31 22:04:40 +03:00

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
This commit is contained in:
Nathan Bossart
2025-05-07 13:36:51 -05:00
parent ab42d643c1
commit acea3fc49f
2 changed files with 16 additions and 0 deletions

View File

@ -695,6 +695,17 @@ exclude database <replaceable class="parameter">PATTERN</replaceable>
</listitem>
</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>