Increase FD_SETSIZE on Win32 to allow for more than 54 clients.

Per Greg Stark & Dave Page
This commit is contained in:
Magnus Hagander 2007-10-22 10:40:47 +00:00
parent 6088bfb8b6
commit f04b8a8e2c
1 changed files with 3 additions and 1 deletions

View File

@ -1,5 +1,5 @@
/*
* $PostgreSQL: pgsql/contrib/pgbench/pgbench.c,v 1.72 2007/09/27 20:39:43 tgl Exp $
* $PostgreSQL: pgsql/contrib/pgbench/pgbench.c,v 1.73 2007/10/22 10:40:47 mha Exp $
*
* pgbench: a simple benchmark program for PostgreSQL
* written by Tatsuo Ishii
@ -24,6 +24,8 @@
#include <ctype.h>
#ifdef WIN32
#undef FD_SETSIZE
#define FD_SETSIZE 1024
#include <win32.h>
#else
#include <sys/time.h>