diff options
author | Tatsuo Ishii | 2024-10-25 06:06:16 +0000 |
---|---|---|
committer | Tatsuo Ishii | 2024-10-25 06:06:16 +0000 |
commit | 7175ef870e24763a561821685160c5e35b2e8989 (patch) | |
tree | 5be367ecf96c349ce3d066dc0ae3a0a04ff885e9 | |
parent | 248c2d19238c7616531caa8b3101cca4f656185c (diff) |
pgbench: Fix typo.
Fix typo in commit cae0f3c405.
Reported-by: Alexander Lakhin
Discussion: https://postgr.es/m/70eaa41b-805b-ce19-6004-5a0dccd3f731%40gmail.com
-rw-r--r-- | src/bin/pgbench/pgbench.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/bin/pgbench/pgbench.c b/src/bin/pgbench/pgbench.c index 826f7e093d..ba247f3f85 100644 --- a/src/bin/pgbench/pgbench.c +++ b/src/bin/pgbench/pgbench.c @@ -6495,7 +6495,7 @@ printResults(StatsData *total, if (script_total_cnt > 0) { - printf(" - number of transactions actually pocessed: " INT64_FORMAT " (tps = %f)\n", + printf(" - number of transactions actually processed: " INT64_FORMAT " (tps = %f)\n", sstats->cnt, sstats->cnt / bench_duration); printf(" - number of failed transactions: " INT64_FORMAT " (%.3f%%)\n", |