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 1
1
/*
2
2
* PostgreSQL type definitions for the INET and CIDR types.
3
3
*
4
- * $PostgreSQL: pgsql/src/backend/utils/adt/network.c,v 1.66 2006/10/04 00:29:59 momjian Exp $
4
+ * $PostgreSQL: pgsql/src/backend/utils/adt/network.c,v 1.67 2007/01/02 22:21:08 momjian Exp $
5
5
*
6
6
* Jon Postel RIP 16 Oct 1998
7
7
*/
@@ -1389,7 +1389,7 @@ internal_inetpl(inet *ip, int64 addend)
1389
1389
(addend == -1 && carry == 1 )))
1390
1390
ereport (ERROR ,
1391
1391
(errcode (ERRCODE_NUMERIC_VALUE_OUT_OF_RANGE ),
1392
- errmsg ("result out of range" )));
1392
+ errmsg ("result is out of range" )));
1393
1393
}
1394
1394
ip_bits (dst ) = ip_bits (ip );
1395
1395
@@ -1467,7 +1467,7 @@ inetmi(PG_FUNCTION_ARGS)
1467
1467
if ((res < 0 ) ? (lobyte != 0xFF ) : (lobyte != 0 ))
1468
1468
ereport (ERROR ,
1469
1469
(errcode (ERRCODE_NUMERIC_VALUE_OUT_OF_RANGE ),
1470
- errmsg ("result out of range" )));
1470
+ errmsg ("result is out of range" )));
1471
1471
}
1472
1472
carry >>= 8 ;
1473
1473
byte ++ ;
You can’t perform that action at this time.
0 commit comments