mirror of
https://github.com/postgres/postgres.git
synced 2026-04-22 22:59:54 -04:00
34 lines
985 B
C
34 lines
985 B
C
/*-------------------------------------------------------------------------
|
|
*
|
|
* portalcmds.h
|
|
* prototypes for portalcmds.c.
|
|
*
|
|
*
|
|
* Portions Copyright (c) 1996-2009, PostgreSQL Global Development Group
|
|
* Portions Copyright (c) 1994, Regents of the University of California
|
|
*
|
|
* $PostgreSQL: pgsql/src/include/commands/portalcmds.h,v 1.27 2009/01/01 17:23:58 momjian Exp $
|
|
*
|
|
*-------------------------------------------------------------------------
|
|
*/
|
|
#ifndef PORTALCMDS_H
|
|
#define PORTALCMDS_H
|
|
|
|
#include "nodes/parsenodes.h"
|
|
#include "nodes/plannodes.h"
|
|
#include "utils/portal.h"
|
|
|
|
|
|
extern void PerformCursorOpen(PlannedStmt *stmt, ParamListInfo params,
|
|
const char *queryString, bool isTopLevel);
|
|
|
|
extern void PerformPortalFetch(FetchStmt *stmt, DestReceiver *dest,
|
|
char *completionTag);
|
|
|
|
extern void PerformPortalClose(const char *name);
|
|
|
|
extern void PortalCleanup(Portal portal);
|
|
|
|
extern void PersistHoldablePortal(Portal portal);
|
|
|
|
#endif /* PORTALCMDS_H */
|