1
0
mirror of https://github.com/postgres/postgres.git synced 2025-06-11 20:28:21 +03:00

Clean up #include in /include directory. Add scripts for checking includes.

This commit is contained in:
Bruce Momjian
1999-07-15 15:21:54 +00:00
parent 0df761420d
commit 4b2c2850bf
286 changed files with 421 additions and 737 deletions

View File

@ -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"
@ -80,10 +79,6 @@
#include "nodes/relation.h"
#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");
}
/* ----------------