]> granicus.if.org Git - postgresql/commit
Don't reset changes_since_analyze after a selective-columns ANALYZE.
authorTom Lane <tgl@sss.pgh.pa.us>
Mon, 6 Jun 2016 21:44:17 +0000 (17:44 -0400)
committerTom Lane <tgl@sss.pgh.pa.us>
Mon, 6 Jun 2016 21:44:17 +0000 (17:44 -0400)
commitf64340e7436d0f848a99620196cede947bd61418
tree27a444bdae7e3d76c9dc52df3026b9e5024fd959
parentc6dbf1fe79287291bc260cbc06b0de419d2a198c
Don't reset changes_since_analyze after a selective-columns ANALYZE.

If we ANALYZE only selected columns of a table, we should not postpone
auto-analyze because of that; other columns may well still need stats
updates.  As committed, the counter is left alone if a column list is
given, whether or not it includes all analyzable columns of the table.
Per complaint from Tomasz Ostrowski.

It's been like this a long time, so back-patch to all supported branches.

Report: <ef99c1bd-ff60-5f32-2733-c7b504eb960c@ato.waw.pl>
src/backend/commands/analyze.c
src/backend/postmaster/pgstat.c
src/include/pgstat.h