Movatterモバイル変換


[0]ホーム

URL:


Skip to content

Navigation Menu

Sign in
Appearance settings

Search code, repositories, users, issues, pull requests...

Provide feedback

We read every piece of feedback, and take your input very seriously.

Saved searches

Use saved searches to filter your results more quickly

Sign up
Appearance settings

Commit1a7c6ee

Browse files
committed
Avoid gratuitous variation in spelling of same error message.
1 parent980acc8 commit1a7c6ee

File tree

1 file changed

+3
-3
lines changed

1 file changed

+3
-3
lines changed

‎src/backend/utils/adt/geo_ops.c

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -8,7 +8,7 @@
88
*
99
*
1010
* IDENTIFICATION
11-
* $Header: /cvsroot/pgsql/src/backend/utils/adt/geo_ops.c,v 1.73 2002/12/30 02:18:29 tgl Exp $
11+
* $Header: /cvsroot/pgsql/src/backend/utils/adt/geo_ops.c,v 1.74 2003/01/21 19:44:26 tgl Exp $
1212
*
1313
*-------------------------------------------------------------------------
1414
*/
@@ -3623,7 +3623,7 @@ path_add(PG_FUNCTION_ARGS)
36233623
/* Check for integer overflow */
36243624
if (base_size /sizeof(p1->p[0])!= (p1->npts+p2->npts)||
36253625
size <=base_size)
3626-
elog(ERROR,"too many points requested.");
3626+
elog(ERROR,"Too many points requested");
36273627

36283628
result= (PATH*)palloc(size);
36293629

@@ -4449,7 +4449,7 @@ circle_poly(PG_FUNCTION_ARGS)
44494449

44504450
/* Check for integer overflow */
44514451
if (base_size /npts!=sizeof(poly->p[0])||size <=base_size)
4452-
elog(ERROR,"too many points requested");
4452+
elog(ERROR,"Too many points requested");
44534453

44544454
poly= (POLYGON*)palloc0(size);/* zero any holes */
44554455
poly->size=size;

0 commit comments

Comments
 (0)

[8]ページ先頭

©2009-2025 Movatter.jp