Skip to content

Commit e1d9cf0

Browse files
author
Thomas G. Lockhart
committed
Remove some unnecessary include statements (comment out with #ifdef FALSE).
1 parent bf138e2 commit e1d9cf0

File tree

1 file changed

+8
-2
lines changed

1 file changed

+8
-2
lines changed

src/backend/tcop/postgres.c

Lines changed: 8 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -7,7 +7,7 @@
77
*
88
*
99
* IDENTIFICATION
10-
* $Header: /cvsroot/pgsql/src/backend/tcop/postgres.c,v 1.35 1997/07/28 00:55:28 momjian Exp $
10+
* $Header: /cvsroot/pgsql/src/backend/tcop/postgres.c,v 1.36 1997/07/29 16:14:40 thomas Exp $
1111
*
1212
* NOTES
1313
* this is the "main" module of the postgres backend and
@@ -56,7 +56,9 @@
5656

5757
#include "executor/execdebug.h"
5858
#include "executor/executor.h"
59+
#if FALSE
5960
#include "nodes/relation.h"
61+
#endif
6062
#include "nodes/print.h"
6163

6264
#include "optimizer/cost.h"
@@ -65,7 +67,9 @@
6567
#include "optimizer/xfunc.h"
6668
#endif
6769
#include "optimizer/prep.h"
70+
#if FALSE
6871
#include "nodes/plannodes.h"
72+
#endif
6973

7074
#include "storage/bufmgr.h"
7175
#include "fmgr.h"
@@ -74,7 +78,9 @@
7478

7579
#include "nodes/pg_list.h"
7680
#include "tcop/dest.h"
81+
#if FALSE
7782
#include "nodes/memnodes.h"
83+
#endif
7884
#include "utils/mcxt.h"
7985
#include "tcop/pquery.h"
8086
#include "tcop/utility.h"
@@ -1274,7 +1280,7 @@ PostgresMain(int argc, char *argv[])
12741280
*/
12751281
if (IsUnderPostmaster == false) {
12761282
puts("\nPOSTGRES backend interactive interface");
1277-
puts("$Revision: 1.35 $ $Date: 1997/07/28 00:55:28 $");
1283+
puts("$Revision: 1.36 $ $Date: 1997/07/29 16:14:40 $");
12781284
}
12791285

12801286
/* ----------------

0 commit comments

Comments
 (0)