Commit e75d3656 authored by Tom Lane's avatar Tom Lane

Fix int8mul so that overflow check is applied correctly for INT64_IS_BUSTED

case, per Florian Pflug.
Not back-patched since it's unclear that anyone but me still cares ...
parent c9bfabe2
...@@ -7,7 +7,7 @@ ...@@ -7,7 +7,7 @@
* Portions Copyright (c) 1994, Regents of the University of California * Portions Copyright (c) 1994, Regents of the University of California
* *
* IDENTIFICATION * IDENTIFICATION
* $PostgreSQL: pgsql/src/backend/utils/adt/int8.c,v 1.66 2007/06/05 21:31:06 tgl Exp $ * $PostgreSQL: pgsql/src/backend/utils/adt/int8.c,v 1.67 2007/08/30 05:27:29 tgl Exp $
* *
*------------------------------------------------------------------------- *-------------------------------------------------------------------------
*/ */
...@@ -575,15 +575,19 @@ int8mul(PG_FUNCTION_ARGS) ...@@ -575,15 +575,19 @@ int8mul(PG_FUNCTION_ARGS)
* Since the division is likely much more expensive than the actual * Since the division is likely much more expensive than the actual
* multiplication, we'd like to skip it where possible. The best bang for * multiplication, we'd like to skip it where possible. The best bang for
* the buck seems to be to check whether both inputs are in the int32 * the buck seems to be to check whether both inputs are in the int32
* range; if so, no overflow is possible. * range; if so, no overflow is possible. (But that only works if we
* really have a 64-bit int64 datatype...)
*/ */
if (!(arg1 == (int64) ((int32) arg1) && #ifndef INT64_IS_BUSTED
arg2 == (int64) ((int32) arg2)) && if (arg1 != (int64) ((int32) arg1) || arg2 != (int64) ((int32) arg2))
arg2 != 0 && #endif
(result / arg2 != arg1 || (arg2 == -1 && arg1 < 0 && result < 0))) {
ereport(ERROR, if (arg2 != 0 &&
(errcode(ERRCODE_NUMERIC_VALUE_OUT_OF_RANGE), (result / arg2 != arg1 || (arg2 == -1 && arg1 < 0 && result < 0)))
errmsg("bigint out of range"))); ereport(ERROR,
(errcode(ERRCODE_NUMERIC_VALUE_OUT_OF_RANGE),
errmsg("bigint out of range")));
}
PG_RETURN_INT64(result); PG_RETURN_INT64(result);
} }
......
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