Commit f0f4a6d7 authored by Bruce Momjian's avatar Bruce Momjian

Apply fix so pow() and exp() ERANGE is used only if result is not 0.

parent 282f7f2e
......@@ -8,7 +8,7 @@
*
*
* IDENTIFICATION
* $PostgreSQL: pgsql/src/backend/utils/adt/float.c,v 1.145 2007/01/06 15:18:02 momjian Exp $
* $PostgreSQL: pgsql/src/backend/utils/adt/float.c,v 1.146 2007/01/06 20:21:29 momjian Exp $
*
*-------------------------------------------------------------------------
*/
......@@ -1459,7 +1459,7 @@ dpow(PG_FUNCTION_ARGS)
else
result = 1;
}
else if (errno == ERANGE && !isinf(result))
else if (errno == ERANGE && result != 0 && !isinf(result))
result = get_float8_infinity();
CHECKFLOATVAL(result, isinf(arg1) || isinf(arg2), arg1 == 0);
......@@ -1478,7 +1478,7 @@ dexp(PG_FUNCTION_ARGS)
errno = 0;
result = exp(arg1);
if (errno == ERANGE && !isinf(result))
if (errno == ERANGE && result != 0 && !isinf(result))
result = get_float8_infinity();
CHECKFLOATVAL(result, isinf(arg1), false);
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment