Location via proxy:   [ UP ]  
[Report a bug]   [Manage cookies]                
Skip to content

Commit 3cae75f

Browse files
committed
Remove more progname references in vacuumdb.c
Oversight in 5f38403. Author: Álvaro Herrera Discussion: https://postgr.es/m/20190722151806.GA22634@alvherre.pgsql
1 parent a0555dd commit 3cae75f

File tree

1 file changed

+3
-3
lines changed

1 file changed

+3
-3
lines changed

src/bin/scripts/vacuumdb.c

+3-3
Original file line numberDiff line numberDiff line change
@@ -57,7 +57,7 @@ static void prepare_vacuum_command(PQExpBuffer sql, int serverVersion,
5757
vacuumingOptions *vacopts, const char *table);
5858

5959
static void run_vacuum_command(PGconn *conn, const char *sql, bool echo,
60-
const char *table, const char *progname);
60+
const char *table);
6161

6262
static void help(const char *progname);
6363

@@ -646,7 +646,7 @@ vacuum_one_database(const char *dbname, vacuumingOptions *vacopts,
646646
* through ParallelSlotsGetIdle.
647647
*/
648648
run_vacuum_command(free_slot->connection, sql.data,
649-
echo, tabname, progname);
649+
echo, tabname);
650650

651651
cell = cell->next;
652652
} while (cell != NULL);
@@ -855,7 +855,7 @@ prepare_vacuum_command(PQExpBuffer sql, int serverVersion,
855855
*/
856856
static void
857857
run_vacuum_command(PGconn *conn, const char *sql, bool echo,
858-
const char *table, const char *progname)
858+
const char *table)
859859
{
860860
bool status;
861861

0 commit comments

Comments
 (0)