aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
-rw-r--r--src/backend/utils/adt/int.c6
1 files changed, 3 insertions, 3 deletions
diff --git a/src/backend/utils/adt/int.c b/src/backend/utils/adt/int.c
index 6289c538a3b..0a93354697c 100644
--- a/src/backend/utils/adt/int.c
+++ b/src/backend/utils/adt/int.c
@@ -8,7 +8,7 @@
*
*
* IDENTIFICATION
- * $PostgreSQL: pgsql/src/backend/utils/adt/int.c,v 1.73 2006/06/12 16:09:11 momjian Exp $
+ * $PostgreSQL: pgsql/src/backend/utils/adt/int.c,v 1.74 2006/06/12 16:28:52 momjian Exp $
*
*-------------------------------------------------------------------------
*/
@@ -738,7 +738,7 @@ int4mul(PG_FUNCTION_ARGS)
#ifdef WIN32
/*
* Win32 doesn't throw a catchable exception for
- * SELECT -2147483648 /* INT_MIN */ * (-1);
+ * SELECT -2147483648 * (-1); -- INT_MIN
*/
if (arg2 == -1 && arg1 == INT_MIN)
ereport(ERROR,
@@ -784,7 +784,7 @@ int4div(PG_FUNCTION_ARGS)
#ifdef WIN32
/*
* Win32 doesn't throw a catchable exception for
- * SELECT -2147483648 /* INT_MIN */ / (-1);
+ * SELECT -2147483648 / (-1); -- INT_MIN
*/
if (arg2 == -1 && arg1 == INT_MIN)
ereport(ERROR,