summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorAlvaro Herrera <alvherre@alvh.no-ip.org>2021-01-28 12:50:40 -0300
committerAlvaro Herrera <alvherre@alvh.no-ip.org>2021-01-28 12:50:40 -0300
commit4162f91d1c201f5f76c34910e35d32aeb673b219 (patch)
treed998a8582ebdd7550ff66abfd0bf6c6bfb576b8f
parentbcae842b962a485524a41575810caf231400e3db (diff)
pgbench: Remove dead code
doConnect() never returns connections in state CONNECTION_BAD, so checking for that is pointless. Remove the code that does. This code has been dead since ba708ea3dc84, 20 years ago. Discussion: https://postgr.es/m/20210126195224.GA20361@alvherre.pgsql Reviewed-by: Tom Lane <tgl@sss.pgh.pa.us>
-rw-r--r--src/bin/pgbench/pgbench.c8
1 files changed, 0 insertions, 8 deletions
diff --git a/src/bin/pgbench/pgbench.c b/src/bin/pgbench/pgbench.c
index 6ff0628c7bd..837dd24562b 100644
--- a/src/bin/pgbench/pgbench.c
+++ b/src/bin/pgbench/pgbench.c
@@ -3911,14 +3911,6 @@ main(int argc, char **argv)
if (con == NULL)
exit(1);
- if (PQstatus(con) == CONNECTION_BAD)
- {
- fprintf(stderr, "connection to database \"%s\" failed\n",
- PQdb(con) ? PQdb(con) : "");
- fprintf(stderr, "%s", PQerrorMessage(con));
- exit(1);
- }
-
if (internal_script_used)
{
/*