diff options
Diffstat (limited to 'src/include/nodes/makefuncs.h')
-rw-r--r-- | src/include/nodes/makefuncs.h | 5 |
1 files changed, 4 insertions, 1 deletions
diff --git a/src/include/nodes/makefuncs.h b/src/include/nodes/makefuncs.h index a66e9fc09be..f1b45e897bb 100644 --- a/src/include/nodes/makefuncs.h +++ b/src/include/nodes/makefuncs.h @@ -7,7 +7,7 @@ * Portions Copyright (c) 1996-2002, PostgreSQL Global Development Group * Portions Copyright (c) 1994, Regents of the University of California * - * $Id: makefuncs.h,v 1.44 2003/02/10 04:44:46 tgl Exp $ + * $Id: makefuncs.h,v 1.45 2003/07/01 19:10:53 tgl Exp $ * *------------------------------------------------------------------------- */ @@ -56,4 +56,7 @@ extern RangeVar *makeRangeVar(char *schemaname, char *relname); extern TypeName *makeTypeName(char *typnam); +extern FuncExpr *makeFuncExpr(Oid funcid, Oid rettype, + List *args, CoercionForm fformat); + #endif /* MAKEFUNC_H */ |