8000 Clean up #include's. · postgrespro/postgres_cluster@df43800 · GitHub
[go: up one dir, main page]

Skip to content
< 8000 header class="HeaderMktg header-logged-out js-details-container js-header Details f4 py-3" role="banner" data-is-top="true" data-color-mode=light data-light-theme=light data-dark-theme=dark>

Navigation Menu

Sign in
Appearance settings

Search code, repositories, users, issues, pull requests...

Provide feedback

We read every piece of feedback, and take your input very seriously.

Saved searches

Use saved searches to filter your results more quickly

Appearance settings

Commit df43800

Browse files
committed
Clean up #include's.
1 parent e362d4e commit df43800

Some content is hidden

Large Commits have some content hidden by default. Use the searchbox below for content that may be hidden.

50 files changed

+99
-93
lines changed

src/backend/access/gist/gist.c

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -6,7 +6,7 @@
66
*
77
*
88
* IDENTIFICATION
9-
* $Header: /cvsroot/pgsql/src/backend/access/gist/gist.c,v 1.57 2000/06/14 05:24:35 tgl Exp $
9+
* $Header: /cvsroot/pgsql/src/backend/access/gist/gist.c,v 1.58 2000/06/15 03:31:53 momjian Exp $
1010
*
1111
*-------------------------------------------------------------------------
1212
*/
@@ -18,6 +18,7 @@
1818
#include "access/gistscan.h"
1919
#include "access/heapam.h"
2020
#include "catalog/index.h"
21+
#include "catalog/pg_index.h"
2122
#include "executor/executor.h"
2223
#include "miscadmin.h"
2324
#include "utils/syscache.h"

src/backend/access/nbtree/nbtcompare.c

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -8,7 +8,7 @@
88
*
99
*
1010
* IDENTIFICATION
11-
* $Header: /cvsroot/pgsql/src/backend/access/nbtree/nbtcompare.c,v 1.36 2000/06/09 01:11:01 tgl Exp $
11+
* $Header: /cvsroot/pgsql/src/backend/access/nbtree/nbtcompare.c,v 1.37 2000/06/15 03:31:54 momjian Exp $
1212
*
1313
* NOTES
1414
*
@@ -32,6 +32,7 @@
3232

3333
#include "postgres.h"
3434

35+
#include "utils/nabstime.h"
3536
#include "utils/builtins.h"
3637

3738
Datum

src/backend/access/rtree/rtget.c

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -8,17 +8,17 @@
88
*
99
*
1010
* IDENTIFICATION
11-
* $Header: /cvsroot/pgsql/src/backend/access/rtree/Attic/rtget.c,v 1.21 2000/06/13 07:34:48 tgl Exp $
11+
* $Header: /cvsroot/pgsql/src/backend/access/rtree/Attic/rtget.c,v 1.22 2000/06/15 03:32:00 momjian Exp $
1212
*
1313
*-------------------------------------------------------------------------
1414
*/
1515

1616
#include "postgres.h"
1717

1818
#include "access/iqual.h"
19+
#include "access/relscan.h"
1920
#include "access/rtree.h"
20-
21-
21+
#include "storage/off.h"
2222

2323
static OffsetNumber findnext(IndexScanDesc s, Page p, OffsetNumber n,
2424
ScanDirection dir);

src/backend/catalog/heap.c

Lines changed: 3 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -8,7 +8,7 @@
88
*
99
*
1010
* IDENTIFICATION
11-
* $Header: /cvsroot/pgsql/src/backend/catalog/heap.c,v 1.130 2000/05/30 00:49:42 momjian Exp $
11+
* $Header: /cvsroot/pgsql/src/backend/catalog/heap.c,v 1.131 2000/06/15 03:32:01 momjian Exp $
1212
*
1313
*
1414
* INTERFACE ROUTINES
@@ -38,6 +38,7 @@
3838
#include "catalog/indexing.h"
3939
#include "catalog/pg_attrdef.h"
4040
#include "catalog/pg_inherits.h"
41+
#include "catalog/pg_index.h"
4142
#include "catalog/pg_ipl.h"
4243
#include "catalog/pg_proc.h"
4344
#include "catalog/pg_relcheck.h"
@@ -54,6 +55,7 @@
5455
#include "parser/parse_expr.h"
5556
#include "parser/parse_relation.h"
5657
#include "parser/parse_target.h"
58+
#include "parser/parse_type.h"
5759
#include "rewrite/rewriteRemove.h"
5860
#include "storage/smgr.h"
5961
#include "utils/builtins.h"

src/backend/catalog/index.c

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -8,7 +8,7 @@
88
*
99
*
1010
* IDENTIFICATION
11-
* $Header: /cvsroot/pgsql/src/backend/catalog/index.c,v 1.114 2000/06/08 22:36:59 momjian Exp $
11+
* $Header: /cvsroot/pgsql/src/backend/catalog/index.c,v 1.115 2000/06/15 03:32:02 momjian Exp $
1212
*
1313
*
1414
* INTERFACE ROUTINES
@@ -29,6 +29,7 @@
2929
#include "catalog/heap.h"
3030
#include "catalog/index.h"
3131
#include "catalog/indexing.h"
32+
#include "catalog/pg_index.h"
3233
#include "catalog/pg_proc.h"
3334
#include "catalog/pg_type.h"
3435
#include "commands/comment.h"

src/backend/catalog/indexing.c

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -9,7 +9,7 @@
99
*
1010
*
1111
* IDENTIFICATION
12-
* $Header: /cvsroot/pgsql/src/backend/catalog/indexing.c,v 1.64 2000/06/07 04:09:33 momjian Exp $
12+
* $Header: /cvsroot/pgsql/src/backend/catalog/indexing.c,v 1.65 2000/06/15 03:32:02 momjian Exp $
1313
*
1414
*-------------------------------------------------------------------------
1515
*/
@@ -22,6 +22,7 @@
2222
#include "catalog/catname.h"
2323
#include "catalog/index.h"
2424
#include "catalog/indexing.h"
25+
#include "catalog/pg_index.h"
2526
#include "miscadmin.h"
2627
#include "utils/fmgroids.h"
2728
#include "utils/syscache.h"

src/backend/commands/cluster.c

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -15,7 +15,7 @@
1515
*
1616
*
1717
* IDENTIFICATION
18-
* $Header: /cvsroot/pgsql/src/backend/commands/cluster.c,v 1.54 2000/05/30 00:49:43 momjian Exp $
18+
* $Header: /cvsroot/pgsql/src/backend/commands/cluster.c,v 1.55 2000/06/15 03:32:07 momjian Exp $
1919
*
2020
*-------------------------------------------------------------------------
2121
*/
@@ -26,6 +26,7 @@
2626
#include "access/heapam.h"
2727
#include "catalog/heap.h"
2828
#include "catalog/index.h"
29+
#include "catalog/pg_index.h"
2930
#include "catalog/pg_proc.h"
3031
#include "commands/cluster.h"
3132
#include "commands/rename.h"

src/backend/commands/copy.c

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -7,7 +7,7 @@
77
*
88
*
99
* IDENTIFICATION
10-
* $Header: /cvsroot/pgsql/src/backend/commands/copy.c,v 1.113 2000/06/14 18:17:25 petere Exp $
10+
* $Header: /cvsroot/pgsql/src/backend/commands/copy.c,v 1.114 2000/06/15 03:32:07 momjian Exp $
1111
*
1212
*-------------------------------------------------------------------------
1313
*/
@@ -21,6 +21,7 @@
2121
#include "access/heapam.h"
2222
#include "catalog/catname.h"
2323
#include "catalog/index.h"
24+
#include "catalog/pg_index.h"
2425
#include "catalog/pg_shadow.h"
2526
#include "catalog/pg_type.h"
2627
#include "commands/copy.h"

src/backend/commands/indexcmds.c

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -8,7 +8,7 @@
88
*
99
*
1010
* IDENTIFICATION
11-
* $Header: /cvsroot/pgsql/src/backend/commands/indexcmds.c,v 1.28 2000/05/30 00:49:43 momjian Exp $
11+
* $Header: /cvsroot/pgsql/src/backend/commands/indexcmds.c,v 1.29 2000/06/15 03:32:07 momjian Exp $
1212
*
1313
*-------------------------------------------------------------------------
1414
*/
@@ -22,6 +22,7 @@
2222
#include "catalog/index.h"
2323
#include "catalog/pg_amop.h"
2424
#include "catalog/pg_database.h"
25+
#include "catalog/pg_index.h"
2526
#include "catalog/pg_opclass.h"
2627
#include "catalog/pg_operator.h"
2728
#include "catalog/pg_proc.h"

src/backend/executor/execUtils.c

Lines changed: 2 additions & 1 deletion
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.57 2000/05/30 00:49:44 momjian Exp $
11+
* $Header: /cvsroot/pgsql/src/backend/executor/execUtils.c,v 1.58 2000/06/15 03:32:09 momjian Exp $
1212
*
1313
*-------------------------------------------------------------------------
1414
*/
@@ -48,6 +48,7 @@
4848
#include "catalog/catname.h"
4949
#include "catalog/index.h"
5050
#include "catalog/catalog.h"
51+
#include "catalog/pg_index.h"
5152
#include "executor/execdebug.h"
5253
#include "executor/executor.h"
5354
#include "miscadmin.h"

0 commit comments

Comments
 (0)
0