Re: [COMMITTERS] pgsql: Allow multiple tables to be specified in one VACUUM or ANALYZE c
Michael Paquier <michael.paquier@gmail.com>
From: Michael Paquier <michael.paquier@gmail.com>
To: Tom Lane <tgl@sss.pgh.pa.us>
Cc: PostgreSQL mailing lists <pgsql-hackers@postgresql.org>
Date: 2017-10-05T04:55:35Z
Lists: pgsql-hackers
Attachments
- vacuum-fix-comments.patch (application/octet-stream) patch
On Wed, Oct 4, 2017 at 7:53 AM, Tom Lane <tgl@sss.pgh.pa.us> wrote: > Allow multiple tables to be specified in one VACUUM or ANALYZE command. > > Not much to say about this; does what it says on the tin. > > However, formerly, if there was a column list then the ANALYZE action was > implied; now it must be specified, or you get an error. This is because > it would otherwise be a bit unclear what the user meant if some tables > have column lists and some don't. > > Nathan Bossart, reviewed by Michael Paquier and Masahiko Sawada, with some > editorialization by me Tom, it seems to me that in the portions you have editorialized, you have forgotten to update two comments still mentioning get_rel_oids() in vacuum.c and analyze.c. Those should now refer to expand_vacuum_rel() instead. Please see the attached. -- Michael
Commits
-
Improve comments in vacuum_rel() and analyze_rel().
- 4d85c2900b11 11.0 landed
-
Allow multiple tables to be specified in one VACUUM or ANALYZE command.
- 11d8d72c27a6 11.0 cited