summaryrefslogtreecommitdiff
path: root/src/include/access
diff options
context:
space:
mode:
authorBruce Momjian2000-01-10 16:13:23 +0000
committerBruce Momjian2000-01-10 16:13:23 +0000
commit6456b17bc1c60ec8d8f4ca08ddebaefad519afc7 (patch)
treea6cb66b7e40467d14b6c7e38719ffcb8813318d0 /src/include/access
parent3f03f74f3651cd2ded9899f5aa2a928ca8e0d480 (diff)
Rename oid8 -> oidvector and int28 -> int2vector. Cleanup of *out functions.
Diffstat (limited to 'src/include/access')
-rw-r--r--src/include/access/hash.h4
1 files changed, 2 insertions, 2 deletions
diff --git a/src/include/access/hash.h b/src/include/access/hash.h
index ea94f5cc9e2..d6e08b4fec9 100644
--- a/src/include/access/hash.h
+++ b/src/include/access/hash.h
@@ -6,7 +6,7 @@
*
* Copyright (c) 1994, Regents of the University of California
*
- * $Id: hash.h,v 1.28 1999/07/19 07:07:27 momjian Exp $
+ * $Id: hash.h,v 1.29 2000/01/10 16:13:19 momjian Exp $
*
* NOTES
* modeled after Margo Seltzer's hash implementation for unix.
@@ -268,7 +268,7 @@ extern uint32 hashint8(int64 *key);
extern uint32 hashfloat4(float32 keyp);
extern uint32 hashfloat8(float64 keyp);
extern uint32 hashoid(Oid key);
-extern uint32 hashoid8(Oid *key);
+extern uint32 hashoidvector(Oid *key);
extern uint32 hashchar(char key);
extern uint32 hashtext(struct varlena * key);
extern uint32 hashname(NameData *n);