diff options
Diffstat (limited to 'src/include/tcop/tcopprot.h')
-rw-r--r-- | src/include/tcop/tcopprot.h | 8 |
1 files changed, 4 insertions, 4 deletions
diff --git a/src/include/tcop/tcopprot.h b/src/include/tcop/tcopprot.h index eeb21b91bed..de754ff20d5 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.8 1997/11/25 22:07:10 momjian Exp $ + * $Id: tcopprot.h,v 1.9 1997/12/11 17:36:58 momjian Exp $ * * OLD COMMENTS * This file was created so that other c files could get the two @@ -23,11 +23,11 @@ #ifndef BOOTSTRAP_INCLUDE extern List * -pg_plan(char *query_string, Oid *typev, int nargs, +pg_parse_and_plan(char *query_string, Oid *typev, int nargs, QueryTreeList **queryListP, CommandDest dest); -extern void pg_eval(char *query_string, char **argv, Oid *typev, int nargs); +extern void pg_exec_query(char *query_string, char **argv, Oid *typev, int nargs); extern void -pg_eval_dest(char *query_string, char **argv, Oid *typev, +pg_exec_query_dest(char *query_string, char **argv, Oid *typev, int nargs, CommandDest dest); #endif /* BOOTSTRAP_HEADER */ |