diff options
Diffstat (limited to 'src/include')
-rw-r--r-- | src/include/commands/prepare.h | 3 | ||||
-rw-r--r-- | src/include/tcop/pquery.h | 4 |
2 files changed, 5 insertions, 2 deletions
diff --git a/src/include/commands/prepare.h b/src/include/commands/prepare.h index 4a8cde52354..b6c315bd42d 100644 --- a/src/include/commands/prepare.h +++ b/src/include/commands/prepare.h @@ -6,7 +6,7 @@ * * Copyright (c) 2002-2005, PostgreSQL Global Development Group * - * $PostgreSQL: pgsql/src/include/commands/prepare.h,v 1.13 2005/01/01 05:43:09 momjian Exp $ + * $PostgreSQL: pgsql/src/include/commands/prepare.h,v 1.14 2005/06/22 17:45:46 tgl Exp $ * *------------------------------------------------------------------------- */ @@ -59,5 +59,6 @@ extern PreparedStatement *FetchPreparedStatement(const char *stmt_name, extern void DropPreparedStatement(const char *stmt_name, bool showError); extern List *FetchPreparedStatementParams(const char *stmt_name); extern TupleDesc FetchPreparedStatementResultDesc(PreparedStatement *stmt); +extern List *FetchPreparedStatementTargetList(PreparedStatement *stmt); #endif /* PREPARE_H */ diff --git a/src/include/tcop/pquery.h b/src/include/tcop/pquery.h index c3c87baa3f9..da2d29aea89 100644 --- a/src/include/tcop/pquery.h +++ b/src/include/tcop/pquery.h @@ -7,7 +7,7 @@ * Portions Copyright (c) 1996-2005, PostgreSQL Global Development Group * Portions Copyright (c) 1994, Regents of the University of California * - * $PostgreSQL: pgsql/src/include/tcop/pquery.h,v 1.34 2004/12/31 22:03:44 pgsql Exp $ + * $PostgreSQL: pgsql/src/include/tcop/pquery.h,v 1.35 2005/06/22 17:45:46 tgl Exp $ * *------------------------------------------------------------------------- */ @@ -22,6 +22,8 @@ extern DLLIMPORT Portal ActivePortal; extern PortalStrategy ChoosePortalStrategy(List *parseTrees); +extern List *FetchPortalTargetList(Portal portal); + extern void PortalStart(Portal portal, ParamListInfo params, Snapshot snapshot); |