From 726c3854cb133b7121c86347cefeb017c1f85226 Mon Sep 17 00:00:00 2001 From: Bruce Momjian Date: Sat, 31 Jan 1998 04:39:26 +0000 Subject: Inline fastgetattr and others so data access does not use function calls. --- src/backend/executor/execQual.c | 5 +---- 1 file changed, 1 insertion(+), 4 deletions(-) (limited to 'src/backend/executor/execQual.c') diff --git a/src/backend/executor/execQual.c b/src/backend/executor/execQual.c index a5bb7b893b..98a8042cc3 100644 --- a/src/backend/executor/execQual.c +++ b/src/backend/executor/execQual.c @@ -7,7 +7,7 @@ * * * IDENTIFICATION - * $Header: /cvsroot/pgsql/src/backend/executor/execQual.c,v 1.23 1998/01/15 19:44:24 pgsql Exp $ + * $Header: /cvsroot/pgsql/src/backend/executor/execQual.c,v 1.24 1998/01/31 04:38:27 momjian Exp $ * *------------------------------------------------------------------------- */ @@ -301,7 +301,6 @@ ExecEvalVar(Var *variable, ExprContext *econtext, bool *isNull) } result = heap_getattr(heapTuple, /* tuple containing attribute */ - buffer, /* buffer associated with tuple */ attnum, /* attribute number of desired attribute */ tuple_type,/* tuple descriptor of tuple */ isNull); /* return: is attribute null? */ @@ -525,7 +524,6 @@ GetAttributeByNum(TupleTableSlot *slot, } retval = heap_getattr(slot->val, - slot->ttc_buffer, attrno, slot->ttc_tupleDescriptor, isNull); @@ -587,7 +585,6 @@ GetAttributeByName(TupleTableSlot *slot, char *attname, bool *isNull) elog(ERROR, "GetAttributeByName: attribute %s not found", attname); retval = heap_getattr(slot->val, - slot->ttc_buffer, attrno, tupdesc, isNull); -- cgit v1.2.1