pgsql: vacuumdb: Fix comment for vacuum_one_database().

From: Nathan Bossart <nathan(at)postgresql(dot)org>
To: pgsql-committers(at)lists(dot)postgresql(dot)org
Subject: pgsql: vacuumdb: Fix comment for vacuum_one_database().
Date: 2025-01-17 21:24:12
Message-ID: E1tYtp6-002856-Fv@gemulon.postgresql.org
Views: Raw Message | Whole Thread | Download mbox | Resend email
Thread:
Lists: pgsql-committers

vacuumdb: Fix comment for vacuum_one_database().

Since commit e0c2933a76, vacuum_one_database() always uses a
catalog query to discover the tables to process, but this comment
still notes the special case for which we used a catalog query
before that commit. Let's just remove that note.

Also, commit 7781f4e3e7 renamed the "tables" parameter to "objects"
but missed updating this comment. This commit fixes that as well.

Branch
------
master

Details
-------
https://git.postgresql.org/pg/commitdiff/6a9b2a631aa3dbac5b351cd0c45631cbc6e8d19e

Modified Files
--------------
src/bin/scripts/vacuumdb.c | 5 ++---
1 file changed, 2 insertions(+), 3 deletions(-)

Browse pgsql-committers by date

  From Date Subject
Next Message Jeff Davis 2025-01-17 23:59:48 pgsql: Support Unicode full case mapping and conversion.
Previous Message Tom Lane 2025-01-17 19:37:43 pgsql: Add documentation about calling version-1 C functions from C.