diff options
author | Tom Lane <tgl@sss.pgh.pa.us> | 2003-04-08 23:20:04 +0000 |
---|---|---|
committer | Tom Lane <tgl@sss.pgh.pa.us> | 2003-04-08 23:20:04 +0000 |
commit | 730840c9b649a48604083270d48792915ca89233 (patch) | |
tree | cf3ccc25e61cdfc07061ebec63393d77b3a2f643 /src/include/parser/parse_func.h | |
parent | 6fb5115850be766c42177cebf672c68c7d8e3ddd (diff) |
First phase of work on array improvements. ARRAY[x,y,z] constructor
expressions, ARRAY(sub-SELECT) expressions, some array functions.
Polymorphic functions using ANYARRAY/ANYELEMENT argument and return
types. Some regression tests in place, documentation is lacking.
Joe Conway, with some kibitzing from Tom Lane.
Diffstat (limited to 'src/include/parser/parse_func.h')
-rw-r--r-- | src/include/parser/parse_func.h | 6 |
1 files changed, 5 insertions, 1 deletions
diff --git a/src/include/parser/parse_func.h b/src/include/parser/parse_func.h index 6027a22ea9e..3bd369e3c70 100644 --- a/src/include/parser/parse_func.h +++ b/src/include/parser/parse_func.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_func.h,v 1.43 2002/09/04 20:31:45 momjian Exp $ + * $Id: parse_func.h,v 1.44 2003/04/08 23:20:04 tgl Exp $ * *------------------------------------------------------------------------- */ @@ -49,6 +49,10 @@ extern FuncDetailCode func_get_detail(List *funcname, List *fargs, extern bool typeInheritsFrom(Oid subclassTypeId, Oid superclassTypeId); +extern void make_fn_arguments(List *fargs, + Oid *actual_arg_types, + Oid *declared_arg_types); + extern void func_error(const char *caller, List *funcname, int nargs, const Oid *argtypes, const char *msg); |