Thread
Commits
-
In pg_dump, don't dump a stats object unless dumping underlying table.
- b2c9936a7156 16.2 landed
- aa2e323eedc9 14.11 landed
- 8d4e8b746815 13.14 landed
- 7418767f11d1 17.0 landed
- 69d7edb06fc6 12.18 landed
- 1e0841426e96 15.6 landed
-
[PATCH] pg_dump: Do not dump statistics for excluded tables
Rian McGuire <rian.mcguire@buildkite.com> — 2023-12-27T04:44:09Z
Hi hackers, I've attached a patch against master that addresses a small bug in pg_dump. Previously, pg_dump would include CREATE STATISTICS statements for tables that were excluded from the dump, causing reload to fail if any excluded tables had extended statistics. The patch skips the creation of the StatsExtInfo if the associated table does not have the DUMP_COMPONENT_DEFINITION flag set. This is similar to how getPublicationTables behaves if a table is excluded. I've covered this with a regression test by altering one of the CREATE STATISTICS examples to work with the existing 'exclude_test_table' run. Without the fix, that causes the test to fail with: # Failed test 'exclude_test_table: should not dump CREATE STATISTICS extended_stats_no_options' # at t/002_pg_dump.pl line 4934. Regards, Rian
-
Re: [PATCH] pg_dump: Do not dump statistics for excluded tables
Tom Lane <tgl@sss.pgh.pa.us> — 2023-12-27T17:01:50Z
Rian McGuire <rian.mcguire@buildkite.com> writes: > I've attached a patch against master that addresses a small bug in pg_dump. > Previously, pg_dump would include CREATE STATISTICS statements for > tables that were excluded from the dump, causing reload to fail if any > excluded tables had extended statistics. I agree that's a bug ... > The patch skips the creation of the StatsExtInfo if the associated > table does not have the DUMP_COMPONENT_DEFINITION flag set. This is > similar to how getPublicationTables behaves if a table is excluded. ... but I don't like the details of this patch (and I'm not too thrilled with the implementation of getPublicationTables, either). The style in pg_dump is to put such decisions into separate policy-setting subroutines. Also, skipping creation of the DumpableObject altogether is the wrong thing because it'd prevent pg_dump from tracing or reasoning about dependencies involving the stats object, which can be relevant even if the object itself isn't dumped --- this is why all the other data-collection subroutines operate as they do. getPublicationTables can probably get away with its low-rent approach given that publication membership isn't represented by pg_depend entries, but it's far from clear that it'll never be an issue for stats. So I think it needs to be more like the attached. (I did use your test case verbatim.) regards, tom lane