diff options
author | Bruce Momjian <bruce@momjian.us> | 1997-09-27 14:37:21 +0000 |
---|---|---|
committer | Bruce Momjian <bruce@momjian.us> | 1997-09-27 14:37:21 +0000 |
commit | 725a03eb4b5afd11814733d8cfeb1dcbd2b97a84 (patch) | |
tree | 6475529a1d8106a3f4fb61566cc2d7609879feee /src/include/executor/executor.h | |
parent | c73a1935ee5eb7349422b692b61bdfd9e6d9b74d (diff) |
Make GetAttributeByNum visible again for external use.
Diffstat (limited to 'src/include/executor/executor.h')
-rw-r--r-- | src/include/executor/executor.h | 7 |
1 files changed, 4 insertions, 3 deletions
diff --git a/src/include/executor/executor.h b/src/include/executor/executor.h index 219984f17b8..08a5f4d3818 100644 --- a/src/include/executor/executor.h +++ b/src/include/executor/executor.h @@ -6,7 +6,7 @@ * * Copyright (c) 1994, Regents of the University of California * - * $Id: executor.h,v 1.13 1997/09/08 21:51:51 momjian Exp $ + * $Id: executor.h,v 1.14 1997/09/27 14:37:21 momjian Exp $ * *------------------------------------------------------------------------- */ @@ -80,8 +80,9 @@ ExecEvalParam(Param *expression, ExprContext *econtext, /* stop here */ extern char * -GetAttributeByName(TupleTableSlot *slot, char *attname, - bool *isNull); +GetAttributeByNum(TupleTableSlot *slot, AttrNumber attrno, bool *isNull); +extern char * +GetAttributeByName(TupleTableSlot *slot, char *attname, bool *isNull); extern Datum ExecEvalExpr(Node *expression, ExprContext *econtext, bool *isNull, bool *isDone); |