mirror of
https://git.postgresql.org/git/postgresql.git
synced 2026-02-13 01:47:05 +08:00
34 lines
816 B
C
34 lines
816 B
C
/*-------------------------------------------------------------------------
|
|
*
|
|
* pquery.h--
|
|
* prototypes for pquery.c.
|
|
*
|
|
*
|
|
* Copyright (c) 1994, Regents of the University of California
|
|
*
|
|
* $Id: pquery.h,v 1.11 1998/09/01 04:38:43 momjian Exp $
|
|
*
|
|
*-------------------------------------------------------------------------
|
|
*/
|
|
#ifndef PQUERY_H
|
|
#define PQUERY_H
|
|
|
|
#include <executor/execdesc.h>
|
|
|
|
/* moved to execdesc.h
|
|
extern QueryDesc *CreateQueryDesc(Query *parsetree, Plan *plantree,
|
|
CommandDest dest);
|
|
|
|
*/
|
|
extern EState *CreateExecutorState(void);
|
|
|
|
|
|
extern void ProcessPortal(char *portalName, Query *parseTree,
|
|
Plan *plan, EState *state, TupleDesc attinfo,
|
|
CommandDest dest);
|
|
|
|
extern void
|
|
ProcessQuery(Query *parsetree, Plan *plan, CommandDest dest);
|
|
|
|
#endif /* pqueryIncluded */
|