From: Tom Lane Date: Sat, 10 Dec 2005 01:09:14 +0000 (+0000) Subject: Remove incorrect increment of lineno, per David Fetter. X-Git-Tag: REL8_1_1 X-Git-Url: http://git.ipfire.org/?a=commitdiff_plain;h=31a21e3df0a00be4f278c815b487b6c9d9f12a11;p=thirdparty%2Fpostgresql.git Remove incorrect increment of lineno, per David Fetter. Sync HEAD and 8.1 branches of pgbench. --- diff --git a/contrib/pgbench/pgbench.c b/contrib/pgbench/pgbench.c index ae8c4fe5e41..50164a762e7 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;