aboutsummaryrefslogtreecommitdiff
path: root/src
diff options
context:
space:
mode:
authorTom Lane <tgl@sss.pgh.pa.us>1999-03-28 01:56:12 +0000
committerTom Lane <tgl@sss.pgh.pa.us>1999-03-28 01:56:12 +0000
commit23ef47f89dcef116cdc2932febd5f39eeca3242f (patch)
tree7dad8aa95a36c81707789677fe68ce1f1874f9b4 /src
parent763a7ab6b00387770e281d37fd84bba1e03a0b7d (diff)
downloadpostgresql-23ef47f89dcef116cdc2932febd5f39eeca3242f.tar.gz
postgresql-23ef47f89dcef116cdc2932febd5f39eeca3242f.zip
Fix bogus function signature for areajoinsel.
It still doesn't do anything, but at least now it does nothing correctly.
Diffstat (limited to 'src')
-rw-r--r--src/backend/utils/adt/geo_selfuncs.c26
-rw-r--r--src/include/utils/geo_decls.h6
2 files changed, 16 insertions, 16 deletions
diff --git a/src/backend/utils/adt/geo_selfuncs.c b/src/backend/utils/adt/geo_selfuncs.c
index 8b646903592..5c55dcdaacf 100644
--- a/src/backend/utils/adt/geo_selfuncs.c
+++ b/src/backend/utils/adt/geo_selfuncs.c
@@ -8,7 +8,7 @@
*
*
* IDENTIFICATION
- * $Header: /cvsroot/pgsql/src/backend/utils/adt/geo_selfuncs.c,v 1.7 1999/02/13 23:19:18 momjian Exp $
+ * $Header: /cvsroot/pgsql/src/backend/utils/adt/geo_selfuncs.c,v 1.8 1999/03/28 01:56:12 tgl Exp $
*
* XXX These are totally bogus.
*
@@ -37,10 +37,10 @@ areasel(Oid opid,
float64
areajoinsel(Oid opid,
- Oid relid,
- AttrNumber attno,
- char *value,
- int32 flag)
+ Oid relid1,
+ AttrNumber attno1,
+ Oid relid2,
+ AttrNumber attno2)
{
float64 result;
@@ -85,10 +85,10 @@ leftsel(Oid opid,
#ifdef NOT_USED
float64
leftjoinsel(Oid opid,
- Oid relid,
- AttrNumber attno,
- char *value,
- int32 flag)
+ Oid relid1,
+ AttrNumber attno1,
+ Oid relid2,
+ AttrNumber attno2)
{
float64 result;
@@ -122,10 +122,10 @@ contsel(Oid opid,
#ifdef NOT_USED
float64
contjoinsel(Oid opid,
- Oid relid,
- AttrNumber attno,
- char *value,
- int32 flag)
+ Oid relid1,
+ AttrNumber attno1,
+ Oid relid2,
+ AttrNumber attno2)
{
float64 result;
diff --git a/src/include/utils/geo_decls.h b/src/include/utils/geo_decls.h
index 44b0d719c7e..808f5210e1e 100644
--- a/src/include/utils/geo_decls.h
+++ b/src/include/utils/geo_decls.h
@@ -5,7 +5,7 @@
*
* Copyright (c) 1994, Regents of the University of California
*
- * $Id: geo_decls.h,v 1.21 1998/09/01 04:39:11 momjian Exp $
+ * $Id: geo_decls.h,v 1.22 1999/03/28 01:56:11 tgl Exp $
*
* NOTE
* These routines do *not* use the float types from adt/.
@@ -362,7 +362,7 @@ extern double circle_dt(CIRCLE *circle1, CIRCLE *circle2);
/* geo_selfuncs.c */
extern float64 areasel(Oid opid, Oid relid, AttrNumber attno,
char *value, int32 flag);
-extern float64 areajoinsel(Oid opid, Oid relid, AttrNumber attno,
- char *value, int32 flag);
+extern float64 areajoinsel(Oid opid, Oid relid1, AttrNumber attno1,
+ Oid relid2, AttrNumber attno2);
#endif /* GEO_DECLS_H */