aboutsummaryrefslogtreecommitdiff
path: root/src/backend/utils/adt/arrayfuncs.c
diff options
context:
space:
mode:
authorPeter Eisentraut <peter_e@gmx.net>2006-10-06 17:14:01 +0000
committerPeter Eisentraut <peter_e@gmx.net>2006-10-06 17:14:01 +0000
commitb9b4f10b5b20525d3ee0fec4dc4c8c19bf3a71de (patch)
tree9729e2d418e7173814b89300536a6ec8a4a5e63a /src/backend/utils/adt/arrayfuncs.c
parent378c79dc78346ca8b54719ae33f99dc16152e2db (diff)
downloadpostgresql-b9b4f10b5b20525d3ee0fec4dc4c8c19bf3a71de.tar.gz
postgresql-b9b4f10b5b20525d3ee0fec4dc4c8c19bf3a71de.zip
Message style improvements
Diffstat (limited to 'src/backend/utils/adt/arrayfuncs.c')
-rw-r--r--src/backend/utils/adt/arrayfuncs.c6
1 files changed, 3 insertions, 3 deletions
diff --git a/src/backend/utils/adt/arrayfuncs.c b/src/backend/utils/adt/arrayfuncs.c
index a29d31bd6eb..b510d42bb90 100644
--- a/src/backend/utils/adt/arrayfuncs.c
+++ b/src/backend/utils/adt/arrayfuncs.c
@@ -8,7 +8,7 @@
*
*
* IDENTIFICATION
- * $PostgreSQL: pgsql/src/backend/utils/adt/arrayfuncs.c,v 1.133 2006/10/04 00:29:58 momjian Exp $
+ * $PostgreSQL: pgsql/src/backend/utils/adt/arrayfuncs.c,v 1.134 2006/10/06 17:13:59 petere Exp $
*
*-------------------------------------------------------------------------
*/
@@ -1984,7 +1984,7 @@ array_set(ArrayType *array,
if (isNull)
ereport(ERROR,
(errcode(ERRCODE_NULL_VALUE_NOT_ALLOWED),
- errmsg("cannot assign NULL to an element of a fixed-length array")));
+ errmsg("cannot assign null value to an element of a fixed-length array")));
newarray = (ArrayType *) palloc(arraytyplen);
memcpy(newarray, array, arraytyplen);
@@ -2944,7 +2944,7 @@ deconstruct_array(ArrayType *array,
else
ereport(ERROR,
(errcode(ERRCODE_NULL_VALUE_NOT_ALLOWED),
- errmsg("NULL array element not allowed in this context")));
+ errmsg("null array element not allowed in this context")));
}
else
{