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

Per Greg Stark & Dave Page
REL8_3_STABLE
Magnus Hagander 18 years ago
parent 6088bfb8b6
commit f04b8a8e2c
  1. 4
      contrib/pgbench/pgbench.c

@ -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>

Loading…
Cancel
Save