From: Alvaro Herrera Date: Wed, 15 Apr 2009 23:30:33 +0000 (+0000) Subject: Substitute extraneous underscores with spaces. X-Git-Url: http://git.postgresql.org/gitweb/static/gitweb.js?a=commitdiff_plain;h=425585da51920e2b5413b5008534ed2823cd3ee2;p=users%2Fsimon%2Fpostgres.git Substitute extraneous underscores with spaces. --- diff --git a/src/backend/utils/adt/arrayfuncs.c b/src/backend/utils/adt/arrayfuncs.c index 85f860a32a..79f9f5e883 100644 --- a/src/backend/utils/adt/arrayfuncs.c +++ b/src/backend/utils/adt/arrayfuncs.c @@ -4492,7 +4492,7 @@ array_fill_internal(ArrayType *dims, ArrayType *lbs, if (ARR_LBOUND(dims)[0] != 1) ereport(ERROR, (errcode(ERRCODE_ARRAY_SUBSCRIPT_ERROR), - errmsg("wrong range of array_subscripts"), + errmsg("wrong range of array subscripts"), errdetail("Lower bound of dimension array must be one."))); if (ARR_HASNULL(dims)) @@ -4524,7 +4524,7 @@ array_fill_internal(ArrayType *dims, ArrayType *lbs, if (ARR_LBOUND(lbs)[0] != 1) ereport(ERROR, (errcode(ERRCODE_ARRAY_SUBSCRIPT_ERROR), - errmsg("wrong range of array_subscripts"), + errmsg("wrong range of array subscripts"), errdetail("Lower bound of dimension array must be one."))); if (ARR_HASNULL(lbs)) @@ -4535,7 +4535,7 @@ array_fill_internal(ArrayType *dims, ArrayType *lbs, if (ARR_DIMS(lbs)[0] != ndims) ereport(ERROR, (errcode(ERRCODE_ARRAY_SUBSCRIPT_ERROR), - errmsg("wrong number of array_subscripts"), + errmsg("wrong number of array subscripts"), errdetail("Low bound array has different size than dimensions array."))); lbsv = (int *) ARR_DATA_PTR(lbs);