1
0
mirror of https://github.com/postgres/postgres.git synced 2025-11-06 07:49:08 +03:00

Massive commit to run PGINDENT on all *.c and *.h files.

This commit is contained in:
Bruce Momjian
1997-09-07 05:04:48 +00:00
parent 8fecd4febf
commit 1ccd423235
687 changed files with 150775 additions and 136888 deletions

View File

@@ -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 */