From 278bbf4572996e4097eac0c0d169dea1616ad0b6 Mon Sep 17 00:00:00 2001 From: Bruce Momjian Date: Wed, 26 May 1999 12:57:23 +0000 Subject: Make functions static or NOT_USED as appropriate. --- src/backend/tcop/postgres.c | 7 ++++--- 1 file changed, 4 insertions(+), 3 deletions(-) (limited to 'src/backend/tcop/postgres.c') diff --git a/src/backend/tcop/postgres.c b/src/backend/tcop/postgres.c index fbafe1e6bd8..cbed22b8c42 100644 --- a/src/backend/tcop/postgres.c +++ b/src/backend/tcop/postgres.c @@ -7,7 +7,7 @@ * * * IDENTIFICATION - * $Header: /cvsroot/pgsql/src/backend/tcop/postgres.c,v 1.116 1999/05/25 16:11:40 momjian Exp $ + * $Header: /cvsroot/pgsql/src/backend/tcop/postgres.c,v 1.117 1999/05/26 12:55:55 momjian Exp $ * * NOTES * this is the "main" module of the postgres backend and @@ -190,6 +190,7 @@ int _exec_repeat_ = 1; static char InteractiveBackend(char *inBuf); static char SocketBackend(char *inBuf); static char ReadCommand(char *inBuf); +static void pg_exec_query(char *query_string); /* ---------------------------------------------------------------- @@ -647,7 +648,7 @@ pg_parse_and_plan(char *query_string, /* string to execute */ * ---------------------------------------------------------------- */ -void +static void pg_exec_query(char *query_string) { pg_exec_query_dest(query_string, whereToSendOutput, FALSE); @@ -1526,7 +1527,7 @@ PostgresMain(int argc, char *argv[], int real_argc, char *real_argv[]) if (!IsUnderPostmaster) { puts("\nPOSTGRES backend interactive interface "); - puts("$Revision: 1.116 $ $Date: 1999/05/25 16:11:40 $\n"); + puts("$Revision: 1.117 $ $Date: 1999/05/26 12:55:55 $\n"); } /* ---------------- -- cgit v1.2.3