@@ -172,8 +172,8 @@ boolprogress_timestamp = false; /* progress report with Unix time */
172
172
int nclients = 1 ;/* number of clients */
173
173
int nthreads = 1 ;/* number of threads */
174
174
bool is_connect ;/* establish connection for each transaction */
175
- bool report_per_command = false;/* report per-command latencies and
176
- * failures */
175
+ bool report_per_command = false;/* report per-command latencies,
176
+ * failuresand attempts */
177
177
int main_pid ;/* main process id used in log filename */
178
178
int max_attempts_number = 1 ;/* maximum number of attempts to run the
179
179
* transaction with serialization or
@@ -4997,13 +4997,13 @@ threadRun(void *arg)
4997
4997
/* generate and show report */
4998
4998
StatsData cur ;
4999
4999
int64 run = now - last_report ;
5000
+ int64 attempts_count ;
5000
5001
double tps ,
5001
5002
total_run ,
5002
5003
latency ,
5003
5004
sqlat ,
5004
5005
lag ,
5005
5006
latency_stdev ,
5006
- attempts_count ,
5007
5007
attempts_average ,
5008
5008
attempts_stddev ;
5009
5009
char tbuf [64 ];