We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent dc57366 commit 506035bCopy full SHA for 506035b
src/bin/pgbench/pgbench.c
@@ -5598,11 +5598,11 @@ printResults(StatsData *total,
5598
return;
5599
5600
if (throttle_delay && latency_limit)
5601
- printf("number of transactions skipped: " INT64_FORMAT " (%.3f %%)\n",
+ printf("number of transactions skipped: " INT64_FORMAT " (%.3f%%)\n",
5602
total->skipped, 100.0 * total->skipped / total->cnt);
5603
5604
if (latency_limit)
5605
- printf("number of transactions above the %.1f ms latency limit: " INT64_FORMAT "/" INT64_FORMAT " (%.3f %%)\n",
+ printf("number of transactions above the %.1f ms latency limit: " INT64_FORMAT "/" INT64_FORMAT " (%.3f%%)\n",
5606
latency_limit / 1000.0, latency_late, ntx,
5607
(ntx > 0) ? 100.0 * latency_late / ntx : 0.0);
5608
0 commit comments