pgbench: Remove stray use of "float" math.

Oversight in commit 4a87f308b3.

Fabien COELHO
This commit is contained in:
Noah Misch 2013-10-05 17:19:37 -04:00
parent 85fa8293ad
commit 8e00a3850d
1 changed files with 2 additions and 2 deletions

View File

@ -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;