1
0
mirror of https://github.com/postgres/postgres.git synced 2025-05-06 19:59:18 +03:00

Remove more progname references in vacuumdb.c

Oversight in 5f384037.

Author: Álvaro Herrera
Discussion: https://postgr.es/m/20190722151806.GA22634@alvherre.pgsql
This commit is contained in:
Michael Paquier 2019-07-23 14:29:34 +09:00
parent a0555ddab9
commit 3cae75f420

View File

@ -57,7 +57,7 @@ static void prepare_vacuum_command(PQExpBuffer sql, int serverVersion,
vacuumingOptions *vacopts, const char *table); vacuumingOptions *vacopts, const char *table);
static void run_vacuum_command(PGconn *conn, const char *sql, bool echo, static void run_vacuum_command(PGconn *conn, const char *sql, bool echo,
const char *table, const char *progname); const char *table);
static void help(const char *progname); static void help(const char *progname);
@ -646,7 +646,7 @@ vacuum_one_database(const char *dbname, vacuumingOptions *vacopts,
* through ParallelSlotsGetIdle. * through ParallelSlotsGetIdle.
*/ */
run_vacuum_command(free_slot->connection, sql.data, run_vacuum_command(free_slot->connection, sql.data,
echo, tabname, progname); echo, tabname);
cell = cell->next; cell = cell->next;
} while (cell != NULL); } while (cell != NULL);
@ -855,7 +855,7 @@ prepare_vacuum_command(PQExpBuffer sql, int serverVersion,
*/ */
static void static void
run_vacuum_command(PGconn *conn, const char *sql, bool echo, run_vacuum_command(PGconn *conn, const char *sql, bool echo,
const char *table, const char *progname) const char *table)
{ {
bool status; bool status;