aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
-rw-r--r--contrib/pgbench/pgbench.c4
1 files changed, 3 insertions, 1 deletions
diff --git a/contrib/pgbench/pgbench.c b/contrib/pgbench/pgbench.c
index 00cab73f909..f5ac3b1c6d6 100644
--- a/contrib/pgbench/pgbench.c
+++ b/contrib/pgbench/pgbench.c
@@ -1420,7 +1420,9 @@ init(bool is_no_vacuum)
}
if (j % 100000 == 0)
- fprintf(stderr, "%d tuples done.\n", j);
+ fprintf(stderr, "%d of %d tuples (%d%%) done.\n",
+ j, naccounts * scale,
+ j * 100 / (naccounts * scale));
}
if (PQputline(con, "\\.\n"))
{