diff options
| author | Tom Lane | 2005-04-05 06:22:17 +0000 |
|---|---|---|
| committer | Tom Lane | 2005-04-05 06:22:17 +0000 |
| commit | fd97cf4df04e7a0a310b8d364d71958ff868d287 (patch) | |
| tree | 9f4c1c2514a309901fdfc5b1d5700afad230fa2c /src/include | |
| parent | 2af664e7ced87528195c090288094d3521ada2aa (diff) | |
plpgsql does OUT parameters, as per my proposal a few weeks ago.
Diffstat (limited to 'src/include')
| -rw-r--r-- | src/include/funcapi.h | 6 |
1 files changed, 5 insertions, 1 deletions
diff --git a/src/include/funcapi.h b/src/include/funcapi.h index c4d1809948d..2b4bfa28c4d 100644 --- a/src/include/funcapi.h +++ b/src/include/funcapi.h @@ -9,7 +9,7 @@ * * Copyright (c) 2002-2005, PostgreSQL Global Development Group * - * $PostgreSQL: pgsql/src/include/funcapi.h,v 1.16 2005/03/31 22:46:24 tgl Exp $ + * $PostgreSQL: pgsql/src/include/funcapi.h,v 1.17 2005/04/05 06:22:15 tgl Exp $ * *------------------------------------------------------------------------- */ @@ -167,6 +167,10 @@ extern TypeFuncClass get_func_result_type(Oid functionId, Oid *resultTypeId, TupleDesc *resultTupleDesc); +extern bool resolve_polymorphic_argtypes(int numargs, Oid *argtypes, + char *argmodes, + Node *call_expr); + extern TupleDesc build_function_result_tupdesc_d(Datum proallargtypes, Datum proargmodes, Datum proargnames); |
