diff options
author | Bruce Momjian <bruce@momjian.us> | 2007-01-06 15:18:03 +0000 |
---|---|---|
committer | Bruce Momjian <bruce@momjian.us> | 2007-01-06 15:18:03 +0000 |
commit | e80b0bd69d7f01fc6faabd8a025d7b1de9adc10e (patch) | |
tree | 55a514e0d2ff55fc9b24d2ab6c664fe7773eccb9 /src/backend/utils/adt/float.c | |
parent | 19ce06b91bfba90329da6cfdbb8204e924113a81 (diff) | |
download | postgresql-e80b0bd69d7f01fc6faabd8a025d7b1de9adc10e.tar.gz postgresql-e80b0bd69d7f01fc6faabd8a025d7b1de9adc10e.zip |
Check for ERANGE in exp() as well.
Improve release docs for ecpg regression tests.
Diffstat (limited to 'src/backend/utils/adt/float.c')
-rw-r--r-- | src/backend/utils/adt/float.c | 10 |
1 files changed, 6 insertions, 4 deletions
diff --git a/src/backend/utils/adt/float.c b/src/backend/utils/adt/float.c index ef2da34a80e..263a13a3148 100644 --- a/src/backend/utils/adt/float.c +++ b/src/backend/utils/adt/float.c @@ -8,7 +8,7 @@ * * * IDENTIFICATION - * $PostgreSQL: pgsql/src/backend/utils/adt/float.c,v 1.144 2007/01/06 04:14:55 momjian Exp $ + * $PostgreSQL: pgsql/src/backend/utils/adt/float.c,v 1.145 2007/01/06 15:18:02 momjian Exp $ * *------------------------------------------------------------------------- */ @@ -1444,8 +1444,8 @@ dpow(PG_FUNCTION_ARGS) * using errno. However, some platform/CPU combinations return * errno == EDOM and result == Nan for negative arg1 and very large arg2 * (they must be using something different from our floor() test to - * decide it's invalid). Other platforms return errno == ERANGE and a - * large but finite result to signal overflow. + * decide it's invalid). Other platforms (HPPA) return errno == ERANGE + * and a large (HUGE_VAL) but finite result to signal overflow. */ errno = 0; result = pow(arg1, arg2); @@ -1459,7 +1459,6 @@ dpow(PG_FUNCTION_ARGS) else result = 1; } - /* Some platoforms, e.g. HPPA, return ERANGE, but HUGE_VAL, not Inf */ else if (errno == ERANGE && !isinf(result)) result = get_float8_infinity(); @@ -1477,7 +1476,10 @@ dexp(PG_FUNCTION_ARGS) float8 arg1 = PG_GETARG_FLOAT8(0); float8 result; + errno = 0; result = exp(arg1); + if (errno == ERANGE && !isinf(result)) + result = get_float8_infinity(); CHECKFLOATVAL(result, isinf(arg1), false); PG_RETURN_FLOAT8(result); |