]> granicus.if.org Git - postgresql/commit
Call srandom() instead of srand().
authorTatsuo Ishii <ishii@postgresql.org>
Tue, 26 Dec 2006 01:02:05 +0000 (01:02 +0000)
committerTatsuo Ishii <ishii@postgresql.org>
Tue, 26 Dec 2006 01:02:05 +0000 (01:02 +0000)
commit39def593c5b9b2c694efada0a1d9ba358c888ed5
treeb9ed7665fb655e5f7720944ea0e46316fb8d2baf
parent506a9893b7c078ad8dc739ea6872f9f6cc7bd59e
Call srandom() instead of srand().
pgbench calls random() later, so it should have called srandom().
On most platforms except Windows srandom() is actually identical
to srand(), so the bug only bites Windows users.
per bug report from Akio Ishida.
contrib/pgbench/pgbench.c