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/index/indexam.c | |
parent | fe87dbb1403c557bee85115ebe12b69f9ee92ed3 (diff) | |
download | postgresql-a2740a455f558a1b8b9cd1962f92980efa4a984a.tar.gz postgresql-a2740a455f558a1b8b9cd1962f92980efa4a984a.zip |
There, now we support GiST...now what? :)
Diffstat (limited to 'src/backend/access/index/indexam.c')
-rw-r--r-- | src/backend/access/index/indexam.c | 8 |
1 files changed, 5 insertions, 3 deletions
diff --git a/src/backend/access/index/indexam.c b/src/backend/access/index/indexam.c index bffe3a41f3a..32e42011199 100644 --- a/src/backend/access/index/indexam.c +++ b/src/backend/access/index/indexam.c @@ -7,7 +7,7 @@ * * * IDENTIFICATION - * $Header: /cvsroot/pgsql/src/backend/access/index/indexam.c,v 1.1.1.1 1996/07/09 06:21:11 scrappy Exp $ + * $Header: /cvsroot/pgsql/src/backend/access/index/indexam.c,v 1.2 1996/08/26 06:27:48 scrappy Exp $ * * INTERFACE ROUTINES * index_open - open an index relation by relationId @@ -179,7 +179,9 @@ index_close(Relation relation) */ InsertIndexResult index_insert(Relation relation, - IndexTuple indexTuple) + Datum *datum, + char *nulls, + ItemPointer heap_t_ctid) { RegProcedure procedure; InsertIndexResult specificResult; @@ -192,7 +194,7 @@ index_insert(Relation relation, * ---------------- */ specificResult = (InsertIndexResult) - fmgr(procedure, relation, indexTuple, NULL); + fmgr(procedure, relation, datum, nulls, heap_t_ctid, NULL); /* ---------------- * the insert proc is supposed to return a "specific result" and |