diff options
| author | Bruce Momjian | 1998-02-26 04:46:47 +0000 |
|---|---|---|
| committer | Bruce Momjian | 1998-02-26 04:46:47 +0000 |
| commit | a32450a5855eed4bfd756ef292ee45d3c754665b (patch) | |
| tree | 26735c3406d9f46d0f39accbe6ff1fb5cc5beedc /src/include/tcop | |
| parent | 757bf69a2e259c76baed94fa06e792664ab5ed67 (diff) | |
pgindent run before 6.3 release, with Thomas' requested changes.
Diffstat (limited to 'src/include/tcop')
| -rw-r--r-- | src/include/tcop/dest.h | 5 | ||||
| -rw-r--r-- | src/include/tcop/pquery.h | 8 | ||||
| -rw-r--r-- | src/include/tcop/tcopprot.h | 12 |
3 files changed, 15 insertions, 10 deletions
diff --git a/src/include/tcop/dest.h b/src/include/tcop/dest.h index 0209370d8fe..3f3dd71b123 100644 --- a/src/include/tcop/dest.h +++ b/src/include/tcop/dest.h @@ -26,7 +26,7 @@ * * Copyright (c) 1994, Regents of the University of California * - * $Id: dest.h,v 1.12 1998/01/24 22:50:22 momjian Exp $ + * $Id: dest.h,v 1.13 1998/02/26 04:43:39 momjian Exp $ * *------------------------------------------------------------------------- */ @@ -70,7 +70,8 @@ extern void EndCommand(char *commandTag, CommandDest dest); extern void SendCopyBegin(void); extern void ReceiveCopyBegin(void); extern void NullCommand(CommandDest dest); -extern void BeginCommand(char *pname, int operation, TupleDesc attinfo, +extern void +BeginCommand(char *pname, int operation, TupleDesc attinfo, bool isIntoRel, bool isIntoPortal, char *tag, CommandDest dest); extern void UpdateCommandInfo(int operation, Oid lastoid, uint32 tuples); diff --git a/src/include/tcop/pquery.h b/src/include/tcop/pquery.h index 359d673ac44..10935ae63ea 100644 --- a/src/include/tcop/pquery.h +++ b/src/include/tcop/pquery.h @@ -6,7 +6,7 @@ * * Copyright (c) 1994, Regents of the University of California * - * $Id: pquery.h,v 1.8 1998/01/24 22:50:24 momjian Exp $ + * $Id: pquery.h,v 1.9 1998/02/26 04:43:40 momjian Exp $ * *------------------------------------------------------------------------- */ @@ -23,11 +23,13 @@ extern QueryDesc *CreateQueryDesc(Query *parsetree, Plan *plantree, extern EState *CreateExecutorState(void); -extern void ProcessPortal(char *portalName, Query *parseTree, +extern void +ProcessPortal(char *portalName, Query *parseTree, Plan *plan, EState *state, TupleDesc attinfo, CommandDest dest); -extern void ProcessQuery(Query *parsetree, Plan *plan, char *argv[], +extern void +ProcessQuery(Query *parsetree, Plan *plan, char *argv[], Oid *typev, int nargs, CommandDest dest); #endif /* pqueryIncluded */ diff --git a/src/include/tcop/tcopprot.h b/src/include/tcop/tcopprot.h index 93604b4e805..0e2706f05da 100644 --- a/src/include/tcop/tcopprot.h +++ b/src/include/tcop/tcopprot.h @@ -6,7 +6,7 @@ * * Copyright (c) 1994, Regents of the University of California * - * $Id: tcopprot.h,v 1.10 1998/01/24 22:50:26 momjian Exp $ + * $Id: tcopprot.h,v 1.11 1998/02/26 04:43:41 momjian Exp $ * * OLD COMMENTS * This file was created so that other c files could get the two @@ -22,11 +22,13 @@ #include <parser/parse_node.h> #ifndef BOOTSTRAP_INCLUDE -extern List * pg_parse_and_plan(char *query_string, Oid *typev, int nargs, - QueryTreeList **queryListP, CommandDest dest); +extern List * +pg_parse_and_plan(char *query_string, Oid *typev, int nargs, + QueryTreeList **queryListP, CommandDest dest); extern void pg_exec_query(char *query_string, char **argv, Oid *typev, int nargs); -extern void pg_exec_query_dest(char *query_string, char **argv, Oid *typev, - int nargs, CommandDest dest); +extern void +pg_exec_query_dest(char *query_string, char **argv, Oid *typev, + int nargs, CommandDest dest); #endif /* BOOTSTRAP_HEADER */ |
