diff options
Diffstat (limited to 'src/include/tcop/pquery.h')
-rw-r--r-- | src/include/tcop/pquery.h | 22 |
1 files changed, 12 insertions, 10 deletions
diff --git a/src/include/tcop/pquery.h b/src/include/tcop/pquery.h index 9f45684c5b5..9d9117315b8 100644 --- a/src/include/tcop/pquery.h +++ b/src/include/tcop/pquery.h @@ -1,12 +1,12 @@ /*------------------------------------------------------------------------- * * pquery.h-- - * prototypes for pquery.c. + * prototypes for pquery.c. * * * Copyright (c) 1994, Regents of the University of California * - * $Id: pquery.h,v 1.4 1997/08/19 21:40:09 momjian Exp $ + * $Id: pquery.h,v 1.5 1997/09/07 05:01:49 momjian Exp $ * *------------------------------------------------------------------------- */ @@ -15,19 +15,21 @@ #include <executor/execdesc.h> -/* moved to execdesc.h +/* moved to execdesc.h extern QueryDesc *CreateQueryDesc(Query *parsetree, Plan *plantree, - CommandDest dest); + CommandDest dest); */ -extern EState *CreateExecutorState(void); +extern EState *CreateExecutorState(void); -extern void ProcessPortal(char *portalName, Query *parseTree, - Plan *plan, EState *state, TupleDesc attinfo, +extern void +ProcessPortal(char *portalName, Query * parseTree, + Plan * plan, EState * state, TupleDesc attinfo, CommandDest dest); -extern void ProcessQuery(Query *parsetree, Plan *plan, char *argv[], - Oid *typev, int nargs, CommandDest dest); +extern void +ProcessQuery(Query * parsetree, Plan * plan, char *argv[], + Oid * typev, int nargs, CommandDest dest); -#endif /* pqueryIncluded */ +#endif /* pqueryIncluded */ |