diff options
| author | Tom Lane | 2005-06-22 17:45:46 +0000 |
|---|---|---|
| committer | Tom Lane | 2005-06-22 17:45:46 +0000 |
| commit | e98edb5555de0197ba4ffc99b4f3db134c99a86f (patch) | |
| tree | f022547496d97cf1984bae42f972e5da458510a5 /src/include/tcop | |
| parent | 84d73a6dbc23dda43bf4d83ee71b344063524cbe (diff) | |
Fix the mechanism for reporting the original table OID and column number
of columns of a query result so that it can "see through" cursors and
prepared statements. Per gripe a couple months back from John DeSoi.
Diffstat (limited to 'src/include/tcop')
| -rw-r--r-- | src/include/tcop/pquery.h | 4 |
1 files changed, 3 insertions, 1 deletions
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); |
