diff options
author | Bruce Momjian <bruce@momjian.us> | 1999-07-15 15:21:54 +0000 |
---|---|---|
committer | Bruce Momjian <bruce@momjian.us> | 1999-07-15 15:21:54 +0000 |
commit | 4b2c2850bf243cfa4a7b4cbd2e60ba1791c098fb (patch) | |
tree | 35742cac274127492f314850d8baca1215a1e68e /src/backend/tcop/postgres.c | |
parent | 0df761420d30e89fa606e34795e5f3da0713d6f6 (diff) | |
download | postgresql-4b2c2850bf243cfa4a7b4cbd2e60ba1791c098fb.tar.gz postgresql-4b2c2850bf243cfa4a7b4cbd2e60ba1791c098fb.zip |
Clean up #include in /include directory. Add scripts for checking includes.
Diffstat (limited to 'src/backend/tcop/postgres.c')
-rw-r--r-- | src/backend/tcop/postgres.c | 9 |
1 files changed, 2 insertions, 7 deletions
diff --git a/src/backend/tcop/postgres.c b/src/backend/tcop/postgres.c index 74c407ecd82..a17f0ebd43d 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.119 1999/07/02 18:09:27 momjian Exp $ + * $Header: /cvsroot/pgsql/src/backend/tcop/postgres.c,v 1.120 1999/07/15 15:19:59 momjian Exp $ * * NOTES * this is the "main" module of the postgres backend and @@ -69,7 +69,6 @@ #include "tcop/tcopdebug.h" #include "tcop/tcopprot.h" /* where declarations for this file go */ #include "tcop/utility.h" -#include "utils/mcxt.h" #include "utils/rel.h" #include "utils/ps_status.h" #include "utils/temprel.h" @@ -81,10 +80,6 @@ #endif #ifdef NOT_USED -#include "optimizer/xfunc.h" -#endif - -#ifdef NOT_USED #include "nodes/plannodes.h" #endif @@ -1525,7 +1520,7 @@ PostgresMain(int argc, char *argv[], int real_argc, char *real_argv[]) if (!IsUnderPostmaster) { puts("\nPOSTGRES backend interactive interface "); - puts("$Revision: 1.119 $ $Date: 1999/07/02 18:09:27 $\n"); + puts("$Revision: 1.120 $ $Date: 1999/07/15 15:19:59 $\n"); } /* ---------------- |