aboutsummaryrefslogtreecommitdiff
path: root/src/include/parser/parse_func.h
diff options
context:
space:
mode:
authorPeter Eisentraut <peter_e@gmx.net>2008-12-04 17:51:28 +0000
committerPeter Eisentraut <peter_e@gmx.net>2008-12-04 17:51:28 +0000
commit455dffbb73f9875c39f2ab544420454168a8c68c (patch)
treee440fabcfe1bf24cf0e44723aa329150af141ea2 /src/include/parser/parse_func.h
parent7b640b0345dc4fbd39ff568700985b432f6afa07 (diff)
downloadpostgresql-455dffbb73f9875c39f2ab544420454168a8c68c.tar.gz
postgresql-455dffbb73f9875c39f2ab544420454168a8c68c.zip
Default values for function arguments
Pavel Stehule, with some tweaks by Peter Eisentraut
Diffstat (limited to 'src/include/parser/parse_func.h')
-rw-r--r--src/include/parser/parse_func.h5
1 files changed, 3 insertions, 2 deletions
diff --git a/src/include/parser/parse_func.h b/src/include/parser/parse_func.h
index ec619a4ac54..a8f2de16ee0 100644
--- a/src/include/parser/parse_func.h
+++ b/src/include/parser/parse_func.h
@@ -7,7 +7,7 @@
* Portions Copyright (c) 1996-2008, PostgreSQL Global Development Group
* Portions Copyright (c) 1994, Regents of the University of California
*
- * $PostgreSQL: pgsql/src/include/parser/parse_func.h,v 1.60 2008/07/16 01:30:23 tgl Exp $
+ * $PostgreSQL: pgsql/src/include/parser/parse_func.h,v 1.61 2008/12/04 17:51:27 petere Exp $
*
*-------------------------------------------------------------------------
*/
@@ -49,7 +49,8 @@ extern Node *ParseFuncOrColumn(ParseState *pstate,
extern FuncDetailCode func_get_detail(List *funcname, List *fargs,
int nargs, Oid *argtypes, bool expand_variadic,
Oid *funcid, Oid *rettype,
- bool *retset, int *nvargs, Oid **true_typeids);
+ bool *retset, int *nvargs, Oid **true_typeids,
+ List **argdefaults);
extern int func_match_argtypes(int nargs,
Oid *input_typeids,