summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorTatsuo Ishii2023-08-30 06:56:22 +0000
committerTatsuo Ishii2023-08-30 06:56:22 +0000
commitbc6041b61f6678d32a5cfb70744653cd8f8d01c0 (patch)
treec2eb502cfd769def32280c0029b2a310e72d5b6a
parent6475e663b3c67895aa76acac27fd931bf8a6c0f1 (diff)
Fix code indentation vioaltion introduced in commit 3c662643c4.
Per buildfarm member koel
-rw-r--r--src/bin/pgbench/pgbench.c5
1 files changed, 3 insertions, 2 deletions
diff --git a/src/bin/pgbench/pgbench.c b/src/bin/pgbench/pgbench.c
index 617b2023b18..713e8a06bb5 100644
--- a/src/bin/pgbench/pgbench.c
+++ b/src/bin/pgbench/pgbench.c
@@ -7567,11 +7567,12 @@ threadRun(void *arg)
advanceConnectionState(thread, st, &aggs);
/*
- * If --exit-on-abort is used, the program is going to exit
- * when any client is aborted.
+ * If --exit-on-abort is used, the program is going to exit when
+ * any client is aborted.
*/
if (exit_on_abort && st->state == CSTATE_ABORTED)
goto done;
+
/*
* If advanceConnectionState changed client to finished state,
* that's one fewer client that remains.