diff options
Diffstat (limited to 'src/include')
| -rw-r--r-- | src/include/tcop/pquery.h | 5 | ||||
| -rw-r--r-- | src/include/tcop/tcopprot.h | 10 |
2 files changed, 7 insertions, 8 deletions
diff --git a/src/include/tcop/pquery.h b/src/include/tcop/pquery.h index 10935ae63e..303487b988 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.9 1998/02/26 04:43:40 momjian Exp $ + * $Id: pquery.h,v 1.10 1998/06/04 17:26:49 momjian Exp $ * *------------------------------------------------------------------------- */ @@ -29,7 +29,6 @@ ProcessPortal(char *portalName, Query *parseTree, CommandDest dest); extern void -ProcessQuery(Query *parsetree, Plan *plan, char *argv[], - Oid *typev, int nargs, CommandDest dest); +ProcessQuery(Query *parsetree, Plan *plan, CommandDest dest); #endif /* pqueryIncluded */ diff --git a/src/include/tcop/tcopprot.h b/src/include/tcop/tcopprot.h index f20a14d0e2..4f4b60e867 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.13 1998/05/29 17:00:28 momjian Exp $ + * $Id: tcopprot.h,v 1.14 1998/06/04 17:26:49 momjian Exp $ * * OLD COMMENTS * This file was created so that other c files could get the two @@ -25,10 +25,9 @@ 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(char *query_string); extern void -pg_exec_query_dest(char *query_string, char **argv, Oid *typev, - int nargs, CommandDest dest); +pg_exec_query_dest(char *query_string, CommandDest dest); #endif /* BOOTSTRAP_HEADER */ @@ -37,7 +36,8 @@ extern void quickdie(SIGNAL_ARGS); extern void die(SIGNAL_ARGS); extern void FloatExceptionHandler(SIGNAL_ARGS); extern void CancelQuery(void); -extern int PostgresMain(int argc, char *argv[]); +extern int PostgresMain(int argc, char *argv[], + int real_argc, char *real_argv[]); extern void ResetUsage(void); extern void ShowUsage(void); |
