mirror of
https://github.com/postgres/postgres.git
synced 2025-05-05 09:19:17 +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:
parent
a0555ddab9
commit
3cae75f420
@ -57,7 +57,7 @@ static void prepare_vacuum_command(PQExpBuffer sql, int serverVersion,
|
||||
vacuumingOptions *vacopts, const char *table);
|
||||
|
||||
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);
|
||||
|
||||
@ -646,7 +646,7 @@ vacuum_one_database(const char *dbname, vacuumingOptions *vacopts,
|
||||
* through ParallelSlotsGetIdle.
|
||||
*/
|
||||
run_vacuum_command(free_slot->connection, sql.data,
|
||||
echo, tabname, progname);
|
||||
echo, tabname);
|
||||
|
||||
cell = cell->next;
|
||||
} while (cell != NULL);
|
||||
@ -855,7 +855,7 @@ prepare_vacuum_command(PQExpBuffer sql, int serverVersion,
|
||||
*/
|
||||
static void
|
||||
run_vacuum_command(PGconn *conn, const char *sql, bool echo,
|
||||
const char *table, const char *progname)
|
||||
const char *table)
|
||||
{
|
||||
bool status;
|
||||
|
||||
|
Loading…
x
Reference in New Issue
Block a user