提交 f0f4a6d7 编写于 作者: B Bruce Momjian

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

上级 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% .
You are about to add 0 people to the discussion. Proceed with caution.
先完成此消息的编辑!
想要评论请 注册