mirror of
https://git.postgresql.org/git/postgresql.git
synced 2025-01-30 19:00:29 +08:00
pgbench: Don't fail during startup
In pgbench, report, but ignore, any errors returned when attempting to vacuum/truncate the default tables during startup. If the tables are needed, we'll error out soon enough anyway. Per discussion with Tatsuo, David Rowley, Jim Nasby, Robert, Andres, Fujii, Fabrízio de Royes Mello, Tomas Vondra, Michael Paquier, Peter, based on a suggestion from Jeff Janes, patch from Robert, additional message wording from Tom.
This commit is contained in:
parent
97e0aa6979
commit
aa4a0b9571
@ -605,6 +605,21 @@ executeStatement(PGconn *con, const char *sql)
|
||||
PQclear(res);
|
||||
}
|
||||
|
||||
/* call PQexec() and complain, but without exiting, on failure */
|
||||
static void
|
||||
tryExecuteStatement(PGconn *con, const char *sql)
|
||||
{
|
||||
PGresult *res;
|
||||
|
||||
res = PQexec(con, sql);
|
||||
if (PQresultStatus(res) != PGRES_COMMAND_OK)
|
||||
{
|
||||
fprintf(stderr, "%s", PQerrorMessage(con));
|
||||
fprintf(stderr, "(ignoring this error and continuing anyway)\n");
|
||||
}
|
||||
PQclear(res);
|
||||
}
|
||||
|
||||
/* set up a connection to the backend */
|
||||
static PGconn *
|
||||
doConnect(void)
|
||||
@ -3283,15 +3298,15 @@ main(int argc, char **argv)
|
||||
if (!is_no_vacuum)
|
||||
{
|
||||
fprintf(stderr, "starting vacuum...");
|
||||
executeStatement(con, "vacuum pgbench_branches");
|
||||
executeStatement(con, "vacuum pgbench_tellers");
|
||||
executeStatement(con, "truncate pgbench_history");
|
||||
tryExecuteStatement(con, "vacuum pgbench_branches");
|
||||
tryExecuteStatement(con, "vacuum pgbench_tellers");
|
||||
tryExecuteStatement(con, "truncate pgbench_history");
|
||||
fprintf(stderr, "end.\n");
|
||||
|
||||
if (do_vacuum_accounts)
|
||||
{
|
||||
fprintf(stderr, "starting vacuum pgbench_accounts...");
|
||||
executeStatement(con, "vacuum analyze pgbench_accounts");
|
||||
tryExecuteStatement(con, "vacuum analyze pgbench_accounts");
|
||||
fprintf(stderr, "end.\n");
|
||||
}
|
||||
}
|
||||
|
Loading…
Reference in New Issue
Block a user