mirror of
https://github.com/simtactics/niotso.git
synced 2025-03-24 03:39:07 +00:00
34 lines
925 B
C
34 lines
925 B
C
/*-------------------------------------------------------------------------
|
|
*
|
|
* portalcmds.h
|
|
* prototypes for portalcmds.c.
|
|
*
|
|
*
|
|
* Portions Copyright (c) 1996-2011, PostgreSQL Global Development Group
|
|
* Portions Copyright (c) 1994, Regents of the University of California
|
|
*
|
|
* src/include/commands/portalcmds.h
|
|
*
|
|
*-------------------------------------------------------------------------
|
|
*/
|
|
#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 */
|