diff options
Diffstat (limited to 'src/backend/access/hash.h')
-rw-r--r-- | src/backend/access/hash.h | 5 |
1 files changed, 3 insertions, 2 deletions
diff --git a/src/backend/access/hash.h b/src/backend/access/hash.h index 21407696b44..461e7232e69 100644 --- a/src/backend/access/hash.h +++ b/src/backend/access/hash.h @@ -6,7 +6,7 @@ * * Copyright (c) 1994, Regents of the University of California * - * $Id: hash.h,v 1.1.1.1 1996/07/09 06:21:08 scrappy Exp $ + * $Id: hash.h,v 1.2 1996/08/26 06:26:42 scrappy Exp $ * * NOTES * modeled after Margo Seltzer's hash implementation for unix. @@ -250,7 +250,8 @@ typedef HashItemData *HashItem; extern void hashbuild(Relation heap, Relation index, int natts, AttrNumber *attnum, IndexStrategy istrat, uint16 pcount, Datum *params, FuncIndexInfo *finfo, PredInfo *predInfo); -extern InsertIndexResult hashinsert(Relation rel, IndexTuple itup); +extern InsertIndexResult hashinsert(Relation rel, Datum *datum, char *nulls, + ItemPointer ht_ctid); extern char *hashgettuple(IndexScanDesc scan, ScanDirection dir); extern char *hashbeginscan(Relation rel, bool fromEnd, uint16 keysz, ScanKey scankey); |