You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
postgres/src/include/commands/portalcmds.h

32 lines
842 B

/*-------------------------------------------------------------------------
*
* 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
*
23 years ago
* $Id: portalcmds.h,v 1.11 2003/08/04 00:43:30 momjian Exp $
*
*-------------------------------------------------------------------------
*/
#ifndef PORTALCMDS_H
#define PORTALCMDS_H
#include "utils/portal.h"
23 years ago
extern void PerformCursorOpen(DeclareCursorStmt * stmt);
extern void PerformPortalFetch(FetchStmt *stmt, DestReceiver *dest,
23 years ago
char *completionTag);
extern void PerformPortalClose(const char *name);
extern void PortalCleanup(Portal portal, bool isError);
extern void PersistHoldablePortal(Portal portal);
24 years ago
#endif /* PORTALCMDS_H */