From b9b4f10b5b20525d3ee0fec4dc4c8c19bf3a71de Mon Sep 17 00:00:00 2001 From: Peter Eisentraut Date: Fri, 6 Oct 2006 17:14:01 +0000 Subject: Message style improvements --- src/backend/utils/adt/arrayfuncs.c | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) (limited to 'src/backend/utils/adt/arrayfuncs.c') 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 { -- cgit v1.2.3