diff options
| author | Marc G. Fournier <scrappy@hub.org> | 1996-08-26 06:32:06 +0000 |
|---|---|---|
| committer | Marc G. Fournier <scrappy@hub.org> | 1996-08-26 06:32:06 +0000 |
| commit | a2740a455f558a1b8b9cd1962f92980efa4a984a (patch) | |
| tree | 6f52d29248743f100fa40c32cef2cd48043c43f5 /src/backend/access/genam.h | |
| parent | fe87dbb1403c557bee85115ebe12b69f9ee92ed3 (diff) | |
| download | postgresql-a2740a455f558a1b8b9cd1962f92980efa4a984a.tar.gz | |
There, now we support GiST...now what? :)
Diffstat (limited to 'src/backend/access/genam.h')
| -rw-r--r-- | src/backend/access/genam.h | 5 |
1 files changed, 3 insertions, 2 deletions
diff --git a/src/backend/access/genam.h b/src/backend/access/genam.h index b2544650de..8b2ac52e73 100644 --- a/src/backend/access/genam.h +++ b/src/backend/access/genam.h @@ -6,7 +6,7 @@ * * Copyright (c) 1994, Regents of the University of California * - * $Id: genam.h,v 1.1.1.1 1996/07/09 06:21:08 scrappy Exp $ + * $Id: genam.h,v 1.2 1996/08/26 06:26:40 scrappy Exp $ * *------------------------------------------------------------------------- */ @@ -32,7 +32,8 @@ extern Relation index_open(Oid relationId); extern Relation index_openr(char *relationName); extern void index_close(Relation relation); extern InsertIndexResult index_insert(Relation relation, - IndexTuple indexTuple); + Datum *datum, char *nulls, + ItemPointer heap_t_ctid); extern void index_delete(Relation relation, ItemPointer indexItem); extern IndexScanDesc index_beginscan(Relation relation, bool scanFromEnd, uint16 numberOfKeys, ScanKey key); |
