mirror of
https://github.com/postgres/postgres.git
synced 2025-08-22 21:53:06 +03:00
32 lines
842 B
C
32 lines
842 B
C
/*-------------------------------------------------------------------------
|
|
*
|
|
* portalcmds.h
|
|
* prototypes for portalcmds.c.
|
|
*
|
|
*
|
|
* Portions Copyright (c) 1996-2002, PostgreSQL Global Development Group
|
|
* Portions Copyright (c) 1994, Regents of the University of California
|
|
*
|
|
* $Id: portalcmds.h,v 1.11 2003/08/04 00:43:30 momjian Exp $
|
|
*
|
|
*-------------------------------------------------------------------------
|
|
*/
|
|
#ifndef PORTALCMDS_H
|
|
#define PORTALCMDS_H
|
|
|
|
#include "utils/portal.h"
|
|
|
|
|
|
extern void PerformCursorOpen(DeclareCursorStmt * stmt);
|
|
|
|
extern void PerformPortalFetch(FetchStmt *stmt, DestReceiver *dest,
|
|
char *completionTag);
|
|
|
|
extern void PerformPortalClose(const char *name);
|
|
|
|
extern void PortalCleanup(Portal portal, bool isError);
|
|
|
|
extern void PersistHoldablePortal(Portal portal);
|
|
|
|
#endif /* PORTALCMDS_H */
|