diff options
Diffstat (limited to 'src/include/parser/parse_coerce.h')
-rw-r--r-- | src/include/parser/parse_coerce.h | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/src/include/parser/parse_coerce.h b/src/include/parser/parse_coerce.h index 328332aafd2..152ade0e9bd 100644 --- a/src/include/parser/parse_coerce.h +++ b/src/include/parser/parse_coerce.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: parse_coerce.h,v 1.45 2002/08/31 22:10:47 tgl Exp $ + * $Id: parse_coerce.h,v 1.46 2002/09/04 20:31:45 momjian Exp $ * *------------------------------------------------------------------------- */ @@ -39,13 +39,13 @@ extern bool IsPreferredType(CATEGORY category, Oid type); extern CATEGORY TypeCategory(Oid type); extern bool can_coerce_type(int nargs, Oid *input_typeids, Oid *func_typeids, - bool isExplicit); + bool isExplicit); extern Node *coerce_type(ParseState *pstate, Node *node, Oid inputTypeId, Oid targetTypeId, int32 atttypmod, bool isExplicit); extern Node *coerce_type_typmod(ParseState *pstate, Node *node, Oid targetTypeId, int32 atttypmod); extern Node *coerce_type_constraints(ParseState *pstate, Node *arg, - Oid typeId, bool applyTypmod); + Oid typeId, bool applyTypmod); extern Node *coerce_to_boolean(Node *node, const char *constructName); |