diff options
author | Peter Eisentraut <peter_e@gmx.net> | 2008-12-04 17:51:28 +0000 |
---|---|---|
committer | Peter Eisentraut <peter_e@gmx.net> | 2008-12-04 17:51:28 +0000 |
commit | 455dffbb73f9875c39f2ab544420454168a8c68c (patch) | |
tree | e440fabcfe1bf24cf0e44723aa329150af141ea2 /src/include/utils/builtins.h | |
parent | 7b640b0345dc4fbd39ff568700985b432f6afa07 (diff) | |
download | postgresql-455dffbb73f9875c39f2ab544420454168a8c68c.tar.gz postgresql-455dffbb73f9875c39f2ab544420454168a8c68c.zip |
Default values for function arguments
Pavel Stehule, with some tweaks by Peter Eisentraut
Diffstat (limited to 'src/include/utils/builtins.h')
-rw-r--r-- | src/include/utils/builtins.h | 3 |
1 files changed, 2 insertions, 1 deletions
diff --git a/src/include/utils/builtins.h b/src/include/utils/builtins.h index 659b62ea5e9..7f20cdf0015 100644 --- a/src/include/utils/builtins.h +++ b/src/include/utils/builtins.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/utils/builtins.h,v 1.326 2008/11/03 20:17:20 adunstan Exp $ + * $PostgreSQL: pgsql/src/include/utils/builtins.h,v 1.327 2008/12/04 17:51:28 petere Exp $ * *------------------------------------------------------------------------- */ @@ -553,6 +553,7 @@ extern Datum pg_get_userbyid(PG_FUNCTION_ARGS); extern Datum pg_get_serial_sequence(PG_FUNCTION_ARGS); extern Datum pg_get_functiondef(PG_FUNCTION_ARGS); extern Datum pg_get_function_arguments(PG_FUNCTION_ARGS); +extern Datum pg_get_function_identity_arguments(PG_FUNCTION_ARGS); extern Datum pg_get_function_result(PG_FUNCTION_ARGS); extern char *deparse_expression(Node *expr, List *dpcontext, bool forceprefix, bool showimplicit); |