1
0
mirror of https://github.com/postgres/postgres.git synced 2025-10-21 02:52:47 +03:00

Show backend status on ps command line. Remove unused args from

pg_exec_query().
This commit is contained in:
Bruce Momjian
1998-06-04 17:26:49 +00:00
parent 99d21d5b62
commit a576a60e3f
12 changed files with 141 additions and 92 deletions

View File

@@ -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);