diff options
author | Thomas G. Lockhart <lockhart@fourpalms.org> | 1999-04-15 02:23:37 +0000 |
---|---|---|
committer | Thomas G. Lockhart <lockhart@fourpalms.org> | 1999-04-15 02:23:37 +0000 |
commit | 879d1be2fe2c73ce674500bb44af2dad967086ae (patch) | |
tree | 3afd41aaf8b7eb82da6bc9dba1a678799d34c605 /src | |
parent | b2b3d5d184455acdc3cd91d083a0d2403af6c847 (diff) | |
download | postgresql-879d1be2fe2c73ce674500bb44af2dad967086ae.tar.gz postgresql-879d1be2fe2c73ce674500bb44af2dad967086ae.zip |
Declare hashint8().
Diffstat (limited to 'src')
-rw-r--r-- | src/include/access/hash.h | 4 |
1 files changed, 3 insertions, 1 deletions
diff --git a/src/include/access/hash.h b/src/include/access/hash.h index 067578d2f84..f3227f59447 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.21 1999/02/13 23:20:52 momjian Exp $ + * $Id: hash.h,v 1.22 1999/04/15 02:23:37 thomas Exp $ * * NOTES * modeled after Margo Seltzer's hash implementation for unix. @@ -21,6 +21,7 @@ #include <storage/bufpage.h> #include <access/relscan.h> #include <access/itup.h> +#include <utils/int8.h> /* * An overflow page is a spare page allocated for storing data whose @@ -264,6 +265,7 @@ extern void hashdelete(Relation rel, ItemPointer tid); /* hashfunc.c */ extern uint32 hashint2(int16 key); extern uint32 hashint4(uint32 key); +extern uint32 hashint8(int64 *key); extern uint32 hashfloat4(float32 keyp); extern uint32 hashfloat8(float64 keyp); extern uint32 hashoid(Oid key); |