1
0
mirror of https://github.com/postgres/postgres.git synced 2025-08-22 21:53:06 +03:00

Code review for holdable-cursors patch. Fix error recovery, memory

context sloppiness, some other things.  Includes Neil's mopup patch
of 22-Apr.
This commit is contained in:
Tom Lane
2003-04-29 03:21:30 +00:00
parent 6a17d226b5
commit 4a5f38c4e6
18 changed files with 379 additions and 316 deletions

View File

@@ -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 */