]> granicus.if.org Git - postgresql/commit
Make sampler_random_fract() actually obey its API contract.
authorTom Lane <tgl@sss.pgh.pa.us>
Wed, 1 Jul 2015 22:07:48 +0000 (18:07 -0400)
committerTom Lane <tgl@sss.pgh.pa.us>
Wed, 1 Jul 2015 22:07:48 +0000 (18:07 -0400)
commitd7c19d68550eb6018e8581a73a351905f4cc435c
treed894366d75e293ae8769d7cfe39b93179f5684d1
parent8217370864c950ea28c7f940442fe48c701461c2
Make sampler_random_fract() actually obey its API contract.

This function is documented to return a value in the range (0,1),
which is what its predecessor anl_random_fract() did.  However, the
new version depends on pg_erand48() which returns a value in [0,1).
The possibility of returning zero creates hazards of division by zero
or trying to compute log(0) at some call sites, and it might well
break third-party modules using anl_random_fract() too.  So let's
change it to never return zero.  Spotted by Coverity.

Michael Paquier, cosmetically adjusted by me
src/backend/utils/misc/sampling.c