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

Commit23ef47f

Browse files
committed
Fix bogus function signature for areajoinsel.
It still doesn't do anything, but at least now it does nothing correctly.
1 parent763a7ab commit23ef47f

File tree

2 files changed

+16
-16
lines changed

2 files changed

+16
-16
lines changed

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

Lines changed: 13 additions & 13 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_selfuncs.c,v 1.7 1999/02/13 23:19:18 momjian Exp $
11+
* $Header: /cvsroot/pgsql/src/backend/utils/adt/geo_selfuncs.c,v 1.8 1999/03/28 01:56:12 tgl Exp $
1212
*
1313
*XXX These are totally bogus.
1414
*
@@ -37,10 +37,10 @@ areasel(Oid opid,
3737

3838
float64
3939
areajoinsel(Oidopid,
40-
Oidrelid,
41-
AttrNumberattno,
42-
char*value,
43-
int32flag)
40+
Oidrelid1,
41+
AttrNumberattno1,
42+
Oidrelid2,
43+
AttrNumberattno2)
4444
{
4545
float64result;
4646

@@ -85,10 +85,10 @@ leftsel(Oid opid,
8585
#ifdefNOT_USED
8686
float64
8787
leftjoinsel(Oidopid,
88-
Oidrelid,
89-
AttrNumberattno,
90-
char*value,
91-
int32flag)
88+
Oidrelid1,
89+
AttrNumberattno1,
90+
Oidrelid2,
91+
AttrNumberattno2)
9292
{
9393
float64result;
9494

@@ -122,10 +122,10 @@ contsel(Oid opid,
122122
#ifdefNOT_USED
123123
float64
124124
contjoinsel(Oidopid,
125-
Oidrelid,
126-
AttrNumberattno,
127-
char*value,
128-
int32flag)
125+
Oidrelid1,
126+
AttrNumberattno1,
127+
Oidrelid2,
128+
AttrNumberattno2)
129129
{
130130
float64result;
131131

‎src/include/utils/geo_decls.h

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -5,7 +5,7 @@
55
*
66
* Copyright (c) 1994, Regents of the University of California
77
*
8-
* $Id: geo_decls.h,v 1.21 1998/09/01 04:39:11momjian Exp $
8+
* $Id: geo_decls.h,v 1.22 1999/03/28 01:56:11tgl Exp $
99
*
1010
* NOTE
1111
* These routines do *not* use the float types from adt/.
@@ -362,7 +362,7 @@ extern double circle_dt(CIRCLE *circle1, CIRCLE *circle2);
362362
/* geo_selfuncs.c */
363363
externfloat64areasel(Oidopid,Oidrelid,AttrNumberattno,
364364
char*value,int32flag);
365-
externfloat64areajoinsel(Oidopid,Oidrelid,AttrNumberattno,
366-
char*value,int32flag);
365+
externfloat64areajoinsel(Oidopid,Oidrelid1,AttrNumberattno1,
366+
Oidrelid2,AttrNumberattno2);
367367

368368
#endif/* GEO_DECLS_H */

0 commit comments

Comments
 (0)

[8]ページ先頭

©2009-2025 Movatter.jp