88 *
99 *
1010 * IDENTIFICATION
11- * $PostgreSQL: pgsql/src/backend/utils/adt/arrayfuncs.c,v 1.155 2009/04/09 17:39:48 tgl Exp $
11+ * $PostgreSQL: pgsql/src/backend/utils/adt/arrayfuncs.c,v 1.156 2009/04/15 23:30:33 alvherre Exp $
1212 *
1313 *-------------------------------------------------------------------------
1414 */
@@ -4492,7 +4492,7 @@ array_fill_internal(ArrayType *dims, ArrayType *lbs,
44924492if (ARR_LBOUND (dims )[0 ]!= 1 )
44934493ereport (ERROR ,
44944494 (errcode (ERRCODE_ARRAY_SUBSCRIPT_ERROR ),
4495- errmsg ("wrong range ofarray_subscripts " ),
4495+ errmsg ("wrong range ofarray subscripts " ),
44964496errdetail ("Lower bound of dimension array must be one." )));
44974497
44984498if (ARR_HASNULL (dims ))
@@ -4524,7 +4524,7 @@ array_fill_internal(ArrayType *dims, ArrayType *lbs,
45244524if (ARR_LBOUND (lbs )[0 ]!= 1 )
45254525ereport (ERROR ,
45264526(errcode (ERRCODE_ARRAY_SUBSCRIPT_ERROR ),
4527- errmsg ("wrong range ofarray_subscripts " ),
4527+ errmsg ("wrong range ofarray subscripts " ),
45284528errdetail ("Lower bound of dimension array must be one." )));
45294529
45304530if (ARR_HASNULL (lbs ))
@@ -4535,7 +4535,7 @@ array_fill_internal(ArrayType *dims, ArrayType *lbs,
45354535if (ARR_DIMS (lbs )[0 ]!= ndims )
45364536ereport (ERROR ,
45374537 (errcode (ERRCODE_ARRAY_SUBSCRIPT_ERROR ),
4538- errmsg ("wrong number ofarray_subscripts " ),
4538+ errmsg ("wrong number ofarray subscripts " ),
45394539errdetail ("Low bound array has different size than dimensions array." )));
45404540
45414541lbsv = (int * )ARR_DATA_PTR (lbs );