diff options
author | Bruce Momjian <bruce@momjian.us> | 1997-11-26 03:54:23 +0000 |
---|---|---|
committer | Bruce Momjian <bruce@momjian.us> | 1997-11-26 03:54:23 +0000 |
commit | 983ec2cb4bf942a61c6130bce502007569d1403f (patch) | |
tree | 2076976a668c06a92fd3d17bca0c4ae755fb7517 /src/include/executor/executor.h | |
parent | b7044266187a9f646589cb3aa2482d028cd0a87f (diff) | |
download | postgresql-983ec2cb4bf942a61c6130bce502007569d1403f.tar.gz postgresql-983ec2cb4bf942a61c6130bce502007569d1403f.zip |
Make parser functions static where possible.
Diffstat (limited to 'src/include/executor/executor.h')
-rw-r--r-- | src/include/executor/executor.h | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/src/include/executor/executor.h b/src/include/executor/executor.h index 0e20bda73ef..c0d02006860 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.15 1997/11/20 23:23:39 momjian Exp $ + * $Id: executor.h,v 1.16 1997/11/26 03:54:23 momjian Exp $ * *------------------------------------------------------------------------- */ @@ -79,8 +79,8 @@ ExecEvalParam(Param *expression, ExprContext *econtext, bool *isNull); /* stop here */ -extern char * -GetAttributeByNum(TupleTableSlot *slot, AttrNumber attrno, bool *isNull); +extern char *GetAttributeByNum(TupleTableSlot *slot, AttrNumber attrno, + bool *isNull); extern char * GetAttributeByName(TupleTableSlot *slot, char *attname, bool *isNull); extern Datum |