aboutsummaryrefslogtreecommitdiff
path: root/src/backend/utils/adt/arrayfuncs.c
diff options
context:
space:
mode:
authorPeter Eisentraut <peter_e@gmx.net>2009-06-21 20:15:32 +0000
committerPeter Eisentraut <peter_e@gmx.net>2009-06-21 20:15:32 +0000
commite8ec0b15a00aaf3728823944357fac14a78c7c3d (patch)
treea27ed02038e919d6907099f943e017bd7110a1f2 /src/backend/utils/adt/arrayfuncs.c
parent82480e28f5744582dba78320824e3569ed76e74a (diff)
downloadpostgresql-e8ec0b15a00aaf3728823944357fac14a78c7c3d.tar.gz
postgresql-e8ec0b15a00aaf3728823944357fac14a78c7c3d.zip
Message fixes
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 54c489a8969..4ddde3c462d 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.158 2009/06/20 18:45:28 tgl Exp $
+ * $PostgreSQL: pgsql/src/backend/utils/adt/arrayfuncs.c,v 1.159 2009/06/21 20:15:32 petere Exp $
*
*-------------------------------------------------------------------------
*/
@@ -4396,7 +4396,7 @@ array_fill_with_lower_bounds(PG_FUNCTION_ARGS)
if (PG_ARGISNULL(1) || PG_ARGISNULL(2))
ereport(ERROR,
(errcode(ERRCODE_NULL_VALUE_NOT_ALLOWED),
- errmsg("dimension array or low bound array cannot be NULL")));
+ errmsg("dimension array or low bound array must not be null")));
dims = PG_GETARG_ARRAYTYPE_P(1);
lbs = PG_GETARG_ARRAYTYPE_P(2);
@@ -4436,7 +4436,7 @@ array_fill(PG_FUNCTION_ARGS)
if (PG_ARGISNULL(1))
ereport(ERROR,
(errcode(ERRCODE_NULL_VALUE_NOT_ALLOWED),
- errmsg("dimension array or low bound array cannot be NULL")));
+ errmsg("dimension array or low bound array must not be null")));
dims = PG_GETARG_ARRAYTYPE_P(1);