1
0
mirror of https://github.com/postgres/postgres.git synced 2025-06-26 12:21:12 +03:00

Make parser functions static where possible.

This commit is contained in:
Bruce Momjian
1997-11-26 03:54:23 +00:00
parent b704426618
commit 983ec2cb4b
3 changed files with 13 additions and 22 deletions

View File

@ -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