8
8
*
9
9
*
10
10
* 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 $
12
12
*
13
13
*-------------------------------------------------------------------------
14
14
*/
@@ -4492,7 +4492,7 @@ array_fill_internal(ArrayType *dims, ArrayType *lbs,
4492
4492
if (ARR_LBOUND (dims )[0 ] != 1 )
4493
4493
ereport (ERROR ,
4494
4494
(errcode (ERRCODE_ARRAY_SUBSCRIPT_ERROR ),
4495
- errmsg ("wrong range of array_subscripts " ),
4495
+ errmsg ("wrong range of array subscripts " ),
4496
4496
errdetail ("Lower bound of dimension array must be one." )));
4497
4497
4498
4498
if (ARR_HASNULL (dims ))
@@ -4524,7 +4524,7 @@ array_fill_internal(ArrayType *dims, ArrayType *lbs,
4524
4524
if (ARR_LBOUND (lbs )[0 ] != 1 )
4525
4525
ereport (ERROR ,
4526
4526
(errcode (ERRCODE_ARRAY_SUBSCRIPT_ERROR ),
4527
- errmsg ("wrong range of array_subscripts " ),
4527
+ errmsg ("wrong range of array subscripts " ),
4528
4528
errdetail ("Lower bound of dimension array must be one." )));
4529
4529
4530
4530
if (ARR_HASNULL (lbs ))
@@ -4535,7 +4535,7 @@ array_fill_internal(ArrayType *dims, ArrayType *lbs,
4535
4535
if (ARR_DIMS (lbs )[0 ] != ndims )
4536
4536
ereport (ERROR ,
4537
4537
(errcode (ERRCODE_ARRAY_SUBSCRIPT_ERROR ),
4538
- errmsg ("wrong number of array_subscripts " ),
4538
+ errmsg ("wrong number of array subscripts " ),
4539
4539
errdetail ("Low bound array has different size than dimensions array." )));
4540
4540
4541
4541
lbsv = (int * ) ARR_DATA_PTR (lbs );
0 commit comments