From 31a21e3df0a00be4f278c815b487b6c9d9f12a11 Mon Sep 17 00:00:00 2001 From: Tom Lane Date: Sat, 10 Dec 2005 01:09:14 +0000 Subject: Remove incorrect increment of lineno, per David Fetter. Sync HEAD and 8.1 branches of pgbench. --- contrib/pgbench/pgbench.c | 9 +++------ 1 file changed, 3 insertions(+), 6 deletions(-) diff --git a/contrib/pgbench/pgbench.c b/contrib/pgbench/pgbench.c index ae8c4fe5e4..50164a762e 100644 --- a/contrib/pgbench/pgbench.c +++ b/contrib/pgbench/pgbench.c @@ -1,5 +1,5 @@ /* - * $PostgreSQL: pgsql/contrib/pgbench/pgbench.c,v 1.45.2.3 2005/12/04 01:22:42 ishii Exp $ + * $PostgreSQL: pgsql/contrib/pgbench/pgbench.c,v 1.45.2.4 2005/12/10 01:09:14 tgl Exp $ * * pgbench: a simple benchmark program for PostgreSQL * written by Tatsuo Ishii @@ -898,10 +898,8 @@ process_file(char *filename) fclose(fd); return false; } - } else { - lineno++; + } else continue; - } my_commands[lineno] = commands; lineno++; @@ -1120,8 +1118,7 @@ main(int argc, char **argv) fprintf(stderr, "Use limit/ulimt to increase the limit before using pgbench.\n"); exit(1); } -#endif /* #if !(defined(__CYGWIN__) || - * defined(__MINGW32__)) */ +#endif break; case 'C': is_connect = 1; -- cgit v1.2.1