summaryrefslogtreecommitdiff
path: root/src/backend/access/nbtree.h
diff options
context:
space:
mode:
authorMarc G. Fournier <scrappy@hub.org>1996-08-26 06:32:06 +0000
committerMarc G. Fournier <scrappy@hub.org>1996-08-26 06:32:06 +0000
commita2740a455f558a1b8b9cd1962f92980efa4a984a (patch)
tree6f52d29248743f100fa40c32cef2cd48043c43f5 /src/backend/access/nbtree.h
parentfe87dbb1403c557bee85115ebe12b69f9ee92ed3 (diff)
downloadpostgresql-a2740a455f558a1b8b9cd1962f92980efa4a984a.tar.gz
There, now we support GiST...now what? :)
Diffstat (limited to 'src/backend/access/nbtree.h')
-rw-r--r--src/backend/access/nbtree.h5
1 files changed, 3 insertions, 2 deletions
diff --git a/src/backend/access/nbtree.h b/src/backend/access/nbtree.h
index 051fb8f6eb..4dfcf3dbae 100644
--- a/src/backend/access/nbtree.h
+++ b/src/backend/access/nbtree.h
@@ -6,7 +6,7 @@
*
* Copyright (c) 1994, Regents of the University of California
*
- * $Id: nbtree.h,v 1.2 1996/07/30 07:55:10 scrappy Exp $
+ * $Id: nbtree.h,v 1.3 1996/08/26 06:26:44 scrappy Exp $
*
*-------------------------------------------------------------------------
*/
@@ -201,7 +201,8 @@ extern bool BuildingBtree; /* in nbtree.c */
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, IndexTuple itup);
+extern InsertIndexResult btinsert(Relation rel, Datum *datum, char *nulls,
+ ItemPointer ht_ctid);
extern char *btgettuple(IndexScanDesc scan, ScanDirection dir);
extern char *btbeginscan(Relation rel, bool fromEnd, uint16 keysz,
ScanKey scankey);