mirror of
https://git.postgresql.org/git/postgresql.git
synced 2024-12-03 08:00:21 +08:00
Set stderr to unbuffered for pgbench on win32.
ITAGAKI Takahiro
This commit is contained in:
parent
b9527e9840
commit
b082ef7f12
@ -1,5 +1,5 @@
|
||||
/*
|
||||
* $PostgreSQL: pgsql/contrib/pgbench/pgbench.c,v 1.61 2007/01/22 02:17:30 tgl Exp $
|
||||
* $PostgreSQL: pgsql/contrib/pgbench/pgbench.c,v 1.62 2007/03/13 09:06:35 mha Exp $
|
||||
*
|
||||
* pgbench: a simple benchmark program for PostgreSQL
|
||||
* written by Tatsuo Ishii
|
||||
@ -1184,6 +1184,11 @@ main(int argc, char **argv)
|
||||
|
||||
char val[64];
|
||||
|
||||
#ifdef WIN32
|
||||
/* stderr is buffered on Win32. */
|
||||
setvbuf(stderr, NULL, _IONBF, 0);
|
||||
#endif
|
||||
|
||||
if ((env = getenv("PGHOST")) != NULL && *env != '\0')
|
||||
pghost = env;
|
||||
if ((env = getenv("PGPORT")) != NULL && *env != '\0')
|
||||
|
Loading…
Reference in New Issue
Block a user