Commit e9ff0253 authored by Jan Wieck's avatar Jan Wieck

Fixed calculation of bid when generating accounts. Used to create

accounts.bid values of zero.

Jan
parent 4f7a2fa0
/* /*
* $Header: /cvsroot/pgsql/contrib/pgbench/pgbench.c,v 1.26 2003/08/04 00:43:11 momjian Exp $ * $Header: /cvsroot/pgsql/contrib/pgbench/pgbench.c,v 1.27 2003/09/27 19:15:34 wieck Exp $
* *
* pgbench: a simple TPC-B like benchmark program for PostgreSQL * pgbench: a simple TPC-B like benchmark program for PostgreSQL
* written by Tatsuo Ishii * written by Tatsuo Ishii
...@@ -567,7 +567,7 @@ init(void) ...@@ -567,7 +567,7 @@ init(void)
PQclear(res); PQclear(res);
} }
snprintf(sql, 256, "%d\t%d\t%d\t\n", j, j / naccounts, 0); snprintf(sql, 256, "%d\t%d\t%d\t\n", j, i / naccounts + 1, 0);
if (PQputline(con, sql)) if (PQputline(con, sql))
{ {
fprintf(stderr, "PQputline failed\n"); fprintf(stderr, "PQputline failed\n");
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment