fix one more place.

This commit is contained in:
Shuduo Sang 2020-11-07 21:27:08 +08:00
parent ff690a8c63
commit c1905a921a
1 changed files with 1 additions and 1 deletions

View File

@ -795,7 +795,7 @@ int main(int argc, char *argv[]) {
printf("Spent %.4f seconds to insert %lld records with %d record(s) per request: %.2f records/second\n",
t, (long long int)ntables * nrecords_per_table, nrecords_per_request,
ntables * nrecords_per_table / t);
((long long int)ntables * nrecords_per_table) / t);
for (int i = 0; i < threads; i++) {
info *t_info = infos + i;