diff options
Diffstat (limited to 'src/include/access/nbtree.h')
-rw-r--r-- | src/include/access/nbtree.h | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/src/include/access/nbtree.h b/src/include/access/nbtree.h index c17ce47813c..affe0d58445 100644 --- a/src/include/access/nbtree.h +++ b/src/include/access/nbtree.h @@ -6,7 +6,7 @@ * * Copyright (c) 1994, Regents of the University of California * - * $Id: nbtree.h,v 1.4 1996/11/13 20:50:32 scrappy Exp $ + * $Id: nbtree.h,v 1.5 1997/01/10 09:36:33 vadim Exp $ * *------------------------------------------------------------------------- */ @@ -171,7 +171,7 @@ typedef BTStackData *BTStack; * prototypes for functions in nbtinsert.c */ extern InsertIndexResult _bt_doinsert(Relation rel, BTItem btitem, - bool index_is_unique, bool is_update); + bool index_is_unique, Relation heapRel); /* default is to allow duplicates */ extern bool _bt_itemcmp(Relation rel, Size keysz, BTItem item1, BTItem item2, @@ -203,7 +203,7 @@ extern void btbuild(Relation heap, Relation index, int natts, AttrNumber *attnum, IndexStrategy istrat, uint16 pcount, Datum *params, FuncIndexInfo *finfo, PredInfo *predInfo); extern InsertIndexResult btinsert(Relation rel, Datum *datum, char *nulls, - ItemPointer ht_ctid, bool is_update); + ItemPointer ht_ctid, Relation heapRel); extern char *btgettuple(IndexScanDesc scan, ScanDirection dir); extern char *btbeginscan(Relation rel, bool fromEnd, uint16 keysz, ScanKey scankey); |