Commit 3cae75f4 authored by Michael Paquier's avatar Michael Paquier

Remove more progname references in vacuumdb.c

Oversight in 5f384037.

Author: Álvaro Herrera
Discussion: https://postgr.es/m/20190722151806.GA22634@alvherre.pgsql
parent a0555dda
...@@ -57,7 +57,7 @@ static void prepare_vacuum_command(PQExpBuffer sql, int serverVersion, ...@@ -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, ...@@ -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, ...@@ -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;
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment