Skip to content

Commit 946e80c

Browse files
committed
Final #include cleanup.
1 parent df43800 commit 946e80c

File tree

26 files changed

+29
-68
lines changed

26 files changed

+29
-68
lines changed

src/backend/access/heap/heapam.c

Lines changed: 1 addition & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -8,7 +8,7 @@
88
*
99
*
1010
* IDENTIFICATION
11-
* $Header: /cvsroot/pgsql/src/backend/access/heap/heapam.c,v 1.70 2000/06/02 10:20:24 vadim Exp $
11+
* $Header: /cvsroot/pgsql/src/backend/access/heap/heapam.c,v 1.71 2000/06/15 04:09:34 momjian Exp $
1212
*
1313
*
1414
* INTERFACE ROUTINES
@@ -81,7 +81,6 @@
8181
#include "access/valid.h"
8282
#include "catalog/catalog.h"
8383
#include "miscadmin.h"
84-
#include "utils/builtins.h"
8584
#include "utils/inval.h"
8685
#include "utils/relcache.h"
8786

src/backend/access/nbtree/nbtree.c

Lines changed: 1 addition & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -12,7 +12,7 @@
1212
* Portions Copyright (c) 1994, Regents of the University of California
1313
*
1414
* IDENTIFICATION
15-
* $Header: /cvsroot/pgsql/src/backend/access/nbtree/nbtree.c,v 1.57 2000/06/14 05:24:37 tgl Exp $
15+
* $Header: /cvsroot/pgsql/src/backend/access/nbtree/nbtree.c,v 1.58 2000/06/15 04:09:36 momjian Exp $
1616
*
1717
*-------------------------------------------------------------------------
1818
*/
@@ -25,8 +25,6 @@
2525
#include "catalog/index.h"
2626
#include "executor/executor.h"
2727
#include "miscadmin.h"
28-
#include "tcop/tcopprot.h"
29-
#include "utils/guc.h"
3028

3129
bool BuildingBtree = false; /* see comment in btbuild() */
3230
bool FastBuild = true; /* use sort/build instead of insertion

src/backend/access/nbtree/nbtsort.c

Lines changed: 1 addition & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -28,16 +28,14 @@
2828
* Portions Copyright (c) 1994, Regents of the University of California
2929
*
3030
* IDENTIFICATION
31-
* $Header: /cvsroot/pgsql/src/backend/access/nbtree/nbtsort.c,v 1.53 2000/05/31 00:28:14 petere Exp $
31+
* $Header: /cvsroot/pgsql/src/backend/access/nbtree/nbtsort.c,v 1.54 2000/06/15 04:09:36 momjian Exp $
3232
*
3333
*-------------------------------------------------------------------------
3434
*/
3535

3636
#include "postgres.h"
3737

3838
#include "access/nbtree.h"
39-
#include "tcop/tcopprot.h"
40-
#include "utils/guc.h"
4139
#include "utils/tuplesort.h"
4240

4341

src/backend/access/rtree/rtget.c

Lines changed: 1 addition & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -8,7 +8,7 @@
88
*
99
*
1010
* IDENTIFICATION
11-
* $Header: /cvsroot/pgsql/src/backend/access/rtree/Attic/rtget.c,v 1.22 2000/06/15 03:32:00 momjian Exp $
11+
* $Header: /cvsroot/pgsql/src/backend/access/rtree/Attic/rtget.c,v 1.23 2000/06/15 04:09:41 momjian Exp $
1212
*
1313
*-------------------------------------------------------------------------
1414
*/
@@ -18,7 +18,6 @@
1818
#include "access/iqual.h"
1919
#include "access/relscan.h"
2020
#include "access/rtree.h"
21-
#include "storage/off.h"
2221

2322
static OffsetNumber findnext(IndexScanDesc s, Page p, OffsetNumber n,
2423
ScanDirection dir);

src/backend/commands/command.c

Lines changed: 1 addition & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -8,7 +8,7 @@
88
*
99
*
1010
* IDENTIFICATION
11-
* $Header: /cvsroot/pgsql/src/backend/commands/Attic/command.c,v 1.79 2000/06/12 03:40:29 momjian Exp $
11+
* $Header: /cvsroot/pgsql/src/backend/commands/Attic/command.c,v 1.80 2000/06/15 04:09:45 momjian Exp $
1212
*
1313
* NOTES
1414
* The PortalExecutorHeapMemory crap needs to be eliminated
@@ -37,11 +37,6 @@
3737
#include "commands/trigger.h"
3838
#ifdef _DROP_COLUMN_HACK__
3939
#include "catalog/pg_index.h"
40-
#include "catalog/pg_relcheck.h"
41-
#include "access/genam.h"
42-
#include "commands/comment.h"
43-
#include "commands/defrem.h"
44-
#include "optimizer/clauses.h"
4540
#include "parser/parse.h"
4641
#endif /* _DROP_COLUMN_HACK__ */
4742

src/backend/executor/execAmi.c

Lines changed: 1 addition & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -6,7 +6,7 @@
66
* Portions Copyright (c) 1996-2000, PostgreSQL, Inc
77
* Portions Copyright (c) 1994, Regents of the University of California
88
*
9-
* $Id: execAmi.c,v 1.46 2000/04/12 17:15:07 momjian Exp $
9+
* $Id: execAmi.c,v 1.47 2000/06/15 04:09:50 momjian Exp $
1010
*
1111
*-------------------------------------------------------------------------
1212
*/
@@ -33,7 +33,6 @@
3333
#include "access/heapam.h"
3434
#include "catalog/heap.h"
3535
#include "executor/execdebug.h"
36-
#include "executor/executor.h"
3736
#include "executor/nodeAgg.h"
3837
#include "executor/nodeAppend.h"
3938
#include "executor/nodeGroup.h"

src/backend/executor/execMain.c

Lines changed: 1 addition & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -27,7 +27,7 @@
2727
*
2828
*
2929
* IDENTIFICATION
30-
* $Header: /cvsroot/pgsql/src/backend/executor/execMain.c,v 1.116 2000/06/10 05:16:38 tgl Exp $
30+
* $Header: /cvsroot/pgsql/src/backend/executor/execMain.c,v 1.117 2000/06/15 04:09:50 momjian Exp $
3131
*
3232
*-------------------------------------------------------------------------
3333
*/
@@ -38,7 +38,6 @@
3838
#include "commands/trigger.h"
3939
#include "executor/execdebug.h"
4040
#include "executor/execdefs.h"
41-
#include "executor/executor.h"
4241
#include "miscadmin.h"
4342
#include "optimizer/var.h"
4443
#include "parser/parsetree.h"

src/backend/executor/execQual.c

Lines changed: 1 addition & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -8,7 +8,7 @@
88
*
99
*
1010
* IDENTIFICATION
11-
* $Header: /cvsroot/pgsql/src/backend/executor/execQual.c,v 1.71 2000/06/13 07:34:58 tgl Exp $
11+
* $Header: /cvsroot/pgsql/src/backend/executor/execQual.c,v 1.72 2000/06/15 04:09:50 momjian Exp $
1212
*
1313
*-------------------------------------------------------------------------
1414
*/
@@ -37,7 +37,6 @@
3737
#include "catalog/pg_language.h"
3838
#include "executor/execFlatten.h"
3939
#include "executor/execdebug.h"
40-
#include "executor/executor.h"
4140
#include "executor/functions.h"
4241
#include "executor/nodeSubplan.h"
4342
#include "utils/builtins.h"

src/backend/executor/execUtils.c

Lines changed: 1 addition & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -8,7 +8,7 @@
88
*
99
*
1010
* IDENTIFICATION
11-
* $Header: /cvsroot/pgsql/src/backend/executor/execUtils.c,v 1.58 2000/06/15 03:32:09 momjian Exp $
11+
* $Header: /cvsroot/pgsql/src/backend/executor/execUtils.c,v 1.59 2000/06/15 04:09:52 momjian Exp $
1212
*
1313
*-------------------------------------------------------------------------
1414
*/
@@ -50,7 +50,6 @@
5050
#include "catalog/catalog.h"
5151
#include "catalog/pg_index.h"
5252
#include "executor/execdebug.h"
53-
#include "executor/executor.h"
5453
#include "miscadmin.h"
5554
#include "utils/builtins.h"
5655
#include "utils/fmgroids.h"

src/backend/executor/nodeAppend.c

Lines changed: 1 addition & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -8,7 +8,7 @@
88
*
99
*
1010
* IDENTIFICATION
11-
* $Header: /cvsroot/pgsql/src/backend/executor/nodeAppend.c,v 1.32 2000/06/10 05:16:38 tgl Exp $
11+
* $Header: /cvsroot/pgsql/src/backend/executor/nodeAppend.c,v 1.33 2000/06/15 04:09:52 momjian Exp $
1212
*
1313
*-------------------------------------------------------------------------
1414
*/
@@ -59,7 +59,6 @@
5959

6060
#include "access/heapam.h"
6161
#include "executor/execdebug.h"
62-
#include "executor/executor.h"
6362
#include "executor/nodeAppend.h"
6463
#include "parser/parsetree.h"
6564

0 commit comments

Comments
 (0)