Ensure that "pg_restore -l" reports dependent TOC entries correctly.
commitc1aea206e3e333b8c9f8be20422426ae845dd0cf
authorTom Lane <tgl@sss.pgh.pa.us>
Tue, 7 May 2024 22:22:52 +0000 (7 18:22 -0400)
committerTom Lane <tgl@sss.pgh.pa.us>
Tue, 7 May 2024 22:22:52 +0000 (7 18:22 -0400)
treefa73d28da4867f2bd7a79f22c3d16d6e943c0074
parentc5bec5426af989f2a9b0c1f4b97340798fe153f7
Ensure that "pg_restore -l" reports dependent TOC entries correctly.

If -l was specified together with selective-restore options such as -n
or -N, dependent TOC entries such as comments would be omitted from
the listing, even when an actual restore would have selected them.
This happened because PrintTOCSummary neglected to update the te->reqs
marking of the entry they depended on.

Per report from Justin Pryzby.  This has been wrong since 0d4e6ed30
taught _tocEntryRequired to sometimes look at the "reqs" marking of
other TOC entries, so back-patch to all supported branches.

Discussion: https://postgr.es/m/ZjoeirG7yxODdC4P@pryzbyj2023
src/bin/pg_dump/pg_backup_archiver.c