diff options
Diffstat (limited to 'src/include/nodes/makefuncs.h')
-rw-r--r-- | src/include/nodes/makefuncs.h | 6 |
1 files changed, 4 insertions, 2 deletions
diff --git a/src/include/nodes/makefuncs.h b/src/include/nodes/makefuncs.h index f4e69d3d158..e7c9c29413c 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.40 2002/09/04 20:31:43 momjian Exp $ + * $Id: makefuncs.h,v 1.41 2002/09/18 21:35:24 tgl Exp $ * *------------------------------------------------------------------------- */ @@ -16,6 +16,7 @@ #include "nodes/parsenodes.h" + extern A_Expr *makeA_Expr(int oper, List *name, Node *lexpr, Node *rexpr); extern A_Expr *makeSimpleA_Expr(int oper, const char *name, @@ -52,7 +53,8 @@ extern Const *makeNullConst(Oid consttype); extern Alias *makeAlias(const char *aliasname, List *colnames); -extern RelabelType *makeRelabelType(Node *arg, Oid rtype, int32 rtypmod); +extern RelabelType *makeRelabelType(Node *arg, Oid rtype, int32 rtypmod, + CoercionForm rformat); extern RangeVar *makeRangeVar(char *schemaname, char *relname); |