Location via proxy:   [ UP ]  
[Report a bug]   [Manage cookies]                
Skip to content

Commit a8a5595

Browse files
committed
Substitute extraneous underscores with spaces.
1 parent 74aa1a4 commit a8a5595

File tree

1 file changed

+4
-4
lines changed

1 file changed

+4
-4
lines changed

src/backend/utils/adt/arrayfuncs.c

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -8,7 +8,7 @@
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,
44924492
if (ARR_LBOUND(dims)[0] != 1)
44934493
ereport(ERROR,
44944494
(errcode(ERRCODE_ARRAY_SUBSCRIPT_ERROR),
4495-
errmsg("wrong range of array_subscripts"),
4495+
errmsg("wrong range of array subscripts"),
44964496
errdetail("Lower bound of dimension array must be one.")));
44974497

44984498
if (ARR_HASNULL(dims))
@@ -4524,7 +4524,7 @@ array_fill_internal(ArrayType *dims, ArrayType *lbs,
45244524
if (ARR_LBOUND(lbs)[0] != 1)
45254525
ereport(ERROR,
45264526
(errcode(ERRCODE_ARRAY_SUBSCRIPT_ERROR),
4527-
errmsg("wrong range of array_subscripts"),
4527+
errmsg("wrong range of array subscripts"),
45284528
errdetail("Lower bound of dimension array must be one.")));
45294529

45304530
if (ARR_HASNULL(lbs))
@@ -4535,7 +4535,7 @@ array_fill_internal(ArrayType *dims, ArrayType *lbs,
45354535
if (ARR_DIMS(lbs)[0] != ndims)
45364536
ereport(ERROR,
45374537
(errcode(ERRCODE_ARRAY_SUBSCRIPT_ERROR),
4538-
errmsg("wrong number of array_subscripts"),
4538+
errmsg("wrong number of array subscripts"),
45394539
errdetail("Low bound array has different size than dimensions array.")));
45404540

45414541
lbsv = (int *) ARR_DATA_PTR(lbs);

0 commit comments

Comments
 (0)