Skip to content

Commit 506035b

Browse files
committed
Fix typo in pgbench messages.
Author: KAWAMOTO Masaya Reviewed-by: Fabien COELHO Discussion: https://postgr.es/m/20220224115622.41e671e3449ebd8c270e9103%40sraoss.co.jp
1 parent dc57366 commit 506035b

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

src/bin/pgbench/pgbench.c

+2-2
Original file line numberDiff line numberDiff line change
@@ -5598,11 +5598,11 @@ printResults(StatsData *total,
55985598
return;
55995599

56005600
if (throttle_delay && latency_limit)
5601-
printf("number of transactions skipped: " INT64_FORMAT " (%.3f %%)\n",
5601+
printf("number of transactions skipped: " INT64_FORMAT " (%.3f%%)\n",
56025602
total->skipped, 100.0 * total->skipped / total->cnt);
56035603

56045604
if (latency_limit)
5605-
printf("number of transactions above the %.1f ms latency limit: " INT64_FORMAT "/" INT64_FORMAT " (%.3f %%)\n",
5605+
printf("number of transactions above the %.1f ms latency limit: " INT64_FORMAT "/" INT64_FORMAT " (%.3f%%)\n",
56065606
latency_limit / 1000.0, latency_late, ntx,
56075607
(ntx > 0) ? 100.0 * latency_late / ntx : 0.0);
56085608

0 commit comments

Comments
 (0)