aboutsummaryrefslogtreecommitdiff
path: root/src/backend/tcop/fastpath.c
diff options
context:
space:
mode:
authorBruce Momjian <bruce@momjian.us>2000-01-10 16:13:23 +0000
committerBruce Momjian <bruce@momjian.us>2000-01-10 16:13:23 +0000
commit6456b17bc1c60ec8d8f4ca08ddebaefad519afc7 (patch)
treea6cb66b7e40467d14b6c7e38719ffcb8813318d0 /src/backend/tcop/fastpath.c
parent3f03f74f3651cd2ded9899f5aa2a928ca8e0d480 (diff)
downloadpostgresql-6456b17bc1c60ec8d8f4ca08ddebaefad519afc7.tar.gz
postgresql-6456b17bc1c60ec8d8f4ca08ddebaefad519afc7.zip
Rename oid8 -> oidvector and int28 -> int2vector. Cleanup of *out functions.
Diffstat (limited to 'src/backend/tcop/fastpath.c')
-rw-r--r--src/backend/tcop/fastpath.c4
1 files changed, 2 insertions, 2 deletions
diff --git a/src/backend/tcop/fastpath.c b/src/backend/tcop/fastpath.c
index d8f3009afbd..8a921ac906a 100644
--- a/src/backend/tcop/fastpath.c
+++ b/src/backend/tcop/fastpath.c
@@ -7,7 +7,7 @@
*
*
* IDENTIFICATION
- * $Header: /cvsroot/pgsql/src/backend/tcop/fastpath.c,v 1.31 1999/11/22 17:56:26 momjian Exp $
+ * $Header: /cvsroot/pgsql/src/backend/tcop/fastpath.c,v 1.32 2000/01/10 16:13:13 momjian Exp $
*
* NOTES
* This cruft is the server side of PQfn.
@@ -181,7 +181,7 @@ valid_fp_info(Oid func_id, struct fp_info * fip)
static void
update_fp_info(Oid func_id, struct fp_info * fip)
{
- Oid *argtypes; /* an oid8 */
+ Oid *argtypes; /* an oidvector */
Oid rettype;
HeapTuple func_htp,
type_htp;