diff options
| author | Tom Lane <tgl@sss.pgh.pa.us> | 2003-04-29 03:21:30 +0000 |
|---|---|---|
| committer | Tom Lane <tgl@sss.pgh.pa.us> | 2003-04-29 03:21:30 +0000 |
| commit | 4a5f38c4e624fbdc8bb4511394c45dc2c7f784ec (patch) | |
| tree | 715c7e2440e4616e6084b6348453ad379733e9c9 /src/include/commands/portalcmds.h | |
| parent | 6a17d226b535c1fc7db8a10b5f2b482e852af928 (diff) | |
| download | postgresql-4a5f38c4e624fbdc8bb4511394c45dc2c7f784ec.tar.gz | |
Code review for holdable-cursors patch. Fix error recovery, memory
context sloppiness, some other things. Includes Neil's mopup patch
of 22-Apr.
Diffstat (limited to 'src/include/commands/portalcmds.h')
| -rw-r--r-- | src/include/commands/portalcmds.h | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/src/include/commands/portalcmds.h b/src/include/commands/portalcmds.h index 74855ddf60..66bfca2b8b 100644 --- a/src/include/commands/portalcmds.h +++ b/src/include/commands/portalcmds.h @@ -7,7 +7,7 @@ * Portions Copyright (c) 1996-2002, PostgreSQL Global Development Group * Portions Copyright (c) 1994, Regents of the University of California * - * $Id: portalcmds.h,v 1.6 2003/03/11 19:40:23 tgl Exp $ + * $Id: portalcmds.h,v 1.7 2003/04/29 03:21:30 tgl Exp $ * *------------------------------------------------------------------------- */ @@ -29,6 +29,6 @@ extern long DoPortalFetch(Portal portal, extern void PerformPortalClose(char *name); -extern void PortalCleanup(Portal portal); +extern void PortalCleanup(Portal portal, bool isError); #endif /* PORTALCMDS_H */ |
