diff options
Diffstat (limited to 'src/include/executor/executor.h')
-rw-r--r-- | src/include/executor/executor.h | 8 |
1 files changed, 4 insertions, 4 deletions
diff --git a/src/include/executor/executor.h b/src/include/executor/executor.h index e39a60a6a24..5eb7cbb93ba 100644 --- a/src/include/executor/executor.h +++ b/src/include/executor/executor.h @@ -7,7 +7,7 @@ * Portions Copyright (c) 1996-2000, PostgreSQL, Inc * Portions Copyright (c) 1994, Regents of the University of California * - * $Id: executor.h,v 1.49 2000/08/24 03:29:10 tgl Exp $ + * $Id: executor.h,v 1.50 2000/08/24 23:34:09 tgl Exp $ * *------------------------------------------------------------------------- */ @@ -74,9 +74,9 @@ extern void ExecEndNode(Plan *node, Plan *parent); */ extern Datum ExecEvalParam(Param *expression, ExprContext *econtext, bool *isNull); -extern char *GetAttributeByNum(TupleTableSlot *slot, AttrNumber attrno, - bool *isNull); -extern char *GetAttributeByName(TupleTableSlot *slot, char *attname, +extern Datum GetAttributeByNum(TupleTableSlot *slot, AttrNumber attrno, + bool *isNull); +extern Datum GetAttributeByName(TupleTableSlot *slot, char *attname, bool *isNull); extern Datum ExecMakeFunctionResult(FunctionCachePtr fcache, List *arguments, |