File tree Expand file tree Collapse file tree 1 file changed +3
-3
lines changed Expand file tree Collapse file tree 1 file changed +3
-3
lines changed Original file line number Diff line number Diff line change 8
8
*
9
9
*
10
10
* IDENTIFICATION
11
- * $PostgreSQL: pgsql/src/backend/utils/adt/int.c,v 1.73 2006/06/12 16:09:11 momjian Exp $
11
+ * $PostgreSQL: pgsql/src/backend/utils/adt/int.c,v 1.74 2006/06/12 16:28:52 momjian Exp $
12
12
*
13
13
*-------------------------------------------------------------------------
14
14
*/
@@ -738,7 +738,7 @@ int4mul(PG_FUNCTION_ARGS)
738
738
#ifdef WIN32
739
739
/*
740
740
* Win32 doesn't throw a catchable exception for
741
- * SELECT -2147483648 /* INT_MIN */ * (-1 );
741
+ * SELECT -2147483648 * (-1); -- INT_MIN
742
742
*/
743
743
if (arg2 == -1 && arg1 == INT_MIN )
744
744
ereport (ERROR ,
@@ -784,7 +784,7 @@ int4div(PG_FUNCTION_ARGS)
784
784
#ifdef WIN32
785
785
/*
786
786
* Win32 doesn't throw a catchable exception for
787
- * SELECT -2147483648 /* INT_MIN */ / (-1 );
787
+ * SELECT -2147483648 / (-1); -- INT_MIN
788
788
*/
789
789
if (arg2 == -1 && arg1 == INT_MIN )
790
790
ereport (ERROR ,
You can’t perform that action at this time.
0 commit comments