Location via proxy:   [ UP ]  
[Report a bug]   [Manage cookies]                
Skip to content

Commit d156e1f

Browse files
committed
(Apologies for fat-fingering cvs commit command...) Should have read:
Remove unportable use of tfind/tsearch in favor of bsearch. Fix up random number generator to use random() not rand() and to actually honor its min/max arguments properly. That wasn't so important before, but with exposure of capability to ask for general ranges, it will be.
1 parent 6ae7671 commit d156e1f

File tree

1 file changed

+3
-3
lines changed

1 file changed

+3
-3
lines changed

contrib/pgbench/pgbench.c

+3-3
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
/*
2-
* $PostgreSQL: pgsql/contrib/pgbench/pgbench.c,v 1.41 2005/10/07 15:31:49 tgl Exp $
2+
* $PostgreSQL: pgsql/contrib/pgbench/pgbench.c,v 1.42 2005/10/07 15:34:17 tgl Exp $
33
*
44
* pgbench: a simple benchmark program for PostgreSQL
55
* written by Tatsuo Ishii
@@ -21,6 +21,8 @@
2121

2222
#include "libpq-fe.h"
2323

24+
#include <ctype.h>
25+
2426
#ifdef WIN32
2527
#include "win32.h"
2628
#else
@@ -39,8 +41,6 @@
3941
#include <sys/resource.h>
4042
#endif /* ! WIN32 */
4143

42-
#include <ctype.h>
43-
4444
extern char *optarg;
4545
extern int optind;
4646

0 commit comments

Comments
 (0)