From 4c60b80094009c6f8ed9ccee365e445f07e609ab Mon Sep 17 00:00:00 2001 From: Peter Eisentraut Date: Wed, 5 Sep 2012 23:07:47 -0400 Subject: [PATCH] pgbench: Show better progress when loading tuples Show target number of tuples and percentage in addition to current number. --- contrib/pgbench/pgbench.c | 4 +++- 1 file changed, 3 insertions(+), 1 deletion(-) diff --git a/contrib/pgbench/pgbench.c b/contrib/pgbench/pgbench.c index 00cab73f90..f5ac3b1c6d 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")) { -- 2.40.0