Hi. For v19, the commit message """ pg_restore is extended to handle these pg_dumpall archives, restoring globals and then each database. The --globals-only and --no-globals options control which parts are restored. """ There is no --no-globals option.
In file src/bin/pg_dump/pg_dumpall.c, no need
``
static pg_compress_specification compression_spec = {0};
``
Since compression_spec is only used in an IF branch, we can declare it locally.
The options below are not supported for pg_restore non-text restore,
we can document this.
<option>-a/--data-only</option>,
<option>-l/--list</option>,
<option>-L/--use-list</option>,
<option>--statistics-only</option>,
<option>--strict-names</option>,
<option>--no-schema</option>.
--
jian
https://www.enterprisedb.com/
v19-0001-misc-change-for-v19.no-cfbot
Description: Binary data
