summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
-rw-r--r--contrib/pgbench/pgbench.c4
1 files changed, 2 insertions, 2 deletions
diff --git a/contrib/pgbench/pgbench.c b/contrib/pgbench/pgbench.c
index 059c5b78596..a3b37e9bdc1 100644
--- a/contrib/pgbench/pgbench.c
+++ b/contrib/pgbench/pgbench.c
@@ -3077,7 +3077,7 @@ threadRun(void *arg)
/* generate and show report */
int64 count = 0;
int64 run = now - last_report;
- float tps, total_run, latency;
+ double tps, total_run, latency;
for (i = 0 ; i < nstate ; i++)
count += state[i].cnt;
@@ -3107,7 +3107,7 @@ threadRun(void *arg)
/* generate and show report */
int64 count = 0;
int64 run = now - last_report;
- float tps, total_run, latency;
+ double tps, total_run, latency;
for (i = 0 ; i < progress_nclients ; i++)
count += state[i].cnt;