From a2740a455f558a1b8b9cd1962f92980efa4a984a Mon Sep 17 00:00:00 2001 From: "Marc G. Fournier" Date: Mon, 26 Aug 1996 06:32:06 +0000 Subject: There, now we support GiST...now what? :) --- src/backend/access/index/indexam.c | 8 +++++--- 1 file changed, 5 insertions(+), 3 deletions(-) (limited to 'src/backend/access/index/indexam.c') 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 -- cgit v1.2.3