mirror of
https://github.com/postgres/postgres.git
synced 2025-08-05 07:41:25 +03:00
pgbench: Remove stray use of "float" math.
Oversight in commit 4a87f308b3
.
Fabien COELHO
This commit is contained in:
@@ -3077,7 +3077,7 @@ threadRun(void *arg)
|
|||||||
/* generate and show report */
|
/* generate and show report */
|
||||||
int64 count = 0;
|
int64 count = 0;
|
||||||
int64 run = now - last_report;
|
int64 run = now - last_report;
|
||||||
float tps, total_run, latency;
|
double tps, total_run, latency;
|
||||||
|
|
||||||
for (i = 0 ; i < nstate ; i++)
|
for (i = 0 ; i < nstate ; i++)
|
||||||
count += state[i].cnt;
|
count += state[i].cnt;
|
||||||
@@ -3107,7 +3107,7 @@ threadRun(void *arg)
|
|||||||
/* generate and show report */
|
/* generate and show report */
|
||||||
int64 count = 0;
|
int64 count = 0;
|
||||||
int64 run = now - last_report;
|
int64 run = now - last_report;
|
||||||
float tps, total_run, latency;
|
double tps, total_run, latency;
|
||||||
|
|
||||||
for (i = 0 ; i < progress_nclients ; i++)
|
for (i = 0 ; i < progress_nclients ; i++)
|
||||||
count += state[i].cnt;
|
count += state[i].cnt;
|
||||||
|
Reference in New Issue
Block a user