Movatterモバイル変換


[0]ホーム

URL:


Skip to content

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

Sign up
Appearance settings

Commitdf43800

Browse files
committed
Clean up #include's.
1 parente362d4e commitdf43800

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
staticOffsetNumberfindnext(IndexScanDescs,Pagep,OffsetNumbern,
2424
ScanDirectiondir);

‎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"

‎src/backend/executor/nodeAgg.c

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -32,7 +32,7 @@
3232
* Portions Copyright (c) 1994, Regents of the University of California
3333
*
3434
* IDENTIFICATION
35-
* $Header: /cvsroot/pgsql/src/backend/executor/nodeAgg.c,v 1.66 2000/05/30 04:24:42 tgl Exp $
35+
* $Header: /cvsroot/pgsql/src/backend/executor/nodeAgg.c,v 1.67 2000/06/15 03:32:09 momjian Exp $
3636
*
3737
*-------------------------------------------------------------------------
3838
*/
@@ -47,6 +47,7 @@
4747
#include"optimizer/clauses.h"
4848
#include"parser/parse_expr.h"
4949
#include"parser/parse_oper.h"
50+
#include"parser/parse_type.h"
5051
#include"utils/syscache.h"
5152
#include"utils/tuplesort.h"
5253

‎src/backend/optimizer/plan/createplan.c

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -10,14 +10,15 @@
1010
*
1111
*
1212
* IDENTIFICATION
13-
* $Header: /cvsroot/pgsql/src/backend/optimizer/plan/createplan.c,v 1.91 2000/06/08 22:37:11 momjian Exp $
13+
* $Header: /cvsroot/pgsql/src/backend/optimizer/plan/createplan.c,v 1.92 2000/06/15 03:32:13 momjian Exp $
1414
*
1515
*-------------------------------------------------------------------------
1616
*/
1717
#include<sys/types.h>
1818

1919
#include"postgres.h"
2020

21+
#include"catalog/pg_index.h"
2122
#include"nodes/makefuncs.h"
2223
#include"nodes/nodeFuncs.h"
2324
#include"optimizer/clauses.h"

‎src/backend/optimizer/plan/planner.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/optimizer/plan/planner.c,v 1.82 2000/06/09 03:17:13tgl Exp $
11+
* $Header: /cvsroot/pgsql/src/backend/optimizer/plan/planner.c,v 1.83 2000/06/15 03:32:13momjian Exp $
1212
*
1313
*-------------------------------------------------------------------------
1414
*/
@@ -31,6 +31,7 @@
3131
#include"optimizer/tlist.h"
3232
#include"optimizer/var.h"
3333
#include"parser/parse_expr.h"
34+
#include"parser/parse_type.h"
3435
#include"utils/lsyscache.h"
3536

3637

‎src/backend/optimizer/util/plancat.c

Lines changed: 3 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -10,9 +10,9 @@
1010
*
1111
* IDENTIFICATION
1212
<<<<<<< plancat.c
13-
* $Header: /cvsroot/pgsql/src/backend/optimizer/util/plancat.c,v 1.55 2000/06/09 03:17:12 tgl Exp $
13+
* $Header: /cvsroot/pgsql/src/backend/optimizer/util/plancat.c,v 1.56 2000/06/15 03:32:16 momjian Exp $
1414
=======
15-
* $Header: /cvsroot/pgsql/src/backend/optimizer/util/plancat.c,v 1.55 2000/06/09 03:17:12 tgl Exp $
15+
* $Header: /cvsroot/pgsql/src/backend/optimizer/util/plancat.c,v 1.56 2000/06/15 03:32:16 momjian Exp $
1616
>>>>>>> 1.53
1717
*
1818
*-------------------------------------------------------------------------
@@ -27,6 +27,7 @@
2727
#include"catalog/catname.h"
2828
#include"catalog/pg_amop.h"
2929
#include"catalog/pg_inherits.h"
30+
#include"catalog/pg_index.h"
3031
#include"optimizer/plancat.h"
3132
#include"parser/parsetree.h"
3233
#include"utils/builtins.h"

‎src/backend/parser/parse_agg.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/parser/parse_agg.c,v 1.37 2000/04/12 17:15:26 momjian Exp $
11+
* $Header: /cvsroot/pgsql/src/backend/parser/parse_agg.c,v 1.38 2000/06/15 03:32:19 momjian Exp $
1212
*
1313
*-------------------------------------------------------------------------
1414
*/
@@ -21,6 +21,7 @@
2121
#include"parser/parse_coerce.h"
2222
#include"parser/parse_expr.h"
2323
#include"parser/parsetree.h"
24+
#include"parser/parse_type.h"
2425
#include"utils/lsyscache.h"
2526
#include"utils/syscache.h"
2627

‎src/backend/parser/parse_clause.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/parser/parse_clause.c,v 1.64 2000/06/09 01:44:18 momjian Exp $
11+
* $Header: /cvsroot/pgsql/src/backend/parser/parse_clause.c,v 1.65 2000/06/15 03:32:19 momjian Exp $
1212
*
1313
*-------------------------------------------------------------------------
1414
*/
@@ -25,6 +25,7 @@
2525
#include"parser/parse_oper.h"
2626
#include"parser/parse_relation.h"
2727
#include"parser/parse_target.h"
28+
#include"parser/parse_type.h"
2829

2930
#defineORDER_CLAUSE 0
3031
#defineGROUP_CLAUSE 1

‎src/backend/parser/parse_coerce.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/parser/parse_coerce.c,v 2.43 2000/05/30 00:49:50 momjian Exp $
11+
* $Header: /cvsroot/pgsql/src/backend/parser/parse_coerce.c,v 2.44 2000/06/15 03:32:19 momjian Exp $
1212
*
1313
*-------------------------------------------------------------------------
1414
*/
@@ -19,6 +19,7 @@
1919
#include"parser/parse_coerce.h"
2020
#include"parser/parse_expr.h"
2121
#include"parser/parse_func.h"
22+
#include"parser/parse_type.h"
2223
#include"utils/builtins.h"
2324
#include"utils/syscache.h"
2425

‎src/backend/parser/parse_expr.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/parser/parse_expr.c,v 1.80 2000/06/05 07:28:43 tgl Exp $
11+
* $Header: /cvsroot/pgsql/src/backend/parser/parse_expr.c,v 1.81 2000/06/15 03:32:20 momjian Exp $
1212
*
1313
*-------------------------------------------------------------------------
1414
*/
@@ -28,6 +28,7 @@
2828
#include"parser/parse_oper.h"
2929
#include"parser/parse_relation.h"
3030
#include"parser/parse_target.h"
31+
#include"parser/parse_type.h"
3132
#include"utils/builtins.h"
3233
#include"utils/syscache.h"
3334

‎src/backend/parser/parse_func.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/parser/parse_func.c,v 1.83 2000/06/11 20:08:00 tgl Exp $
11+
* $Header: /cvsroot/pgsql/src/backend/parser/parse_func.c,v 1.84 2000/06/15 03:32:20 momjian Exp $
1212
*
1313
*-------------------------------------------------------------------------
1414
*/
@@ -29,6 +29,7 @@
2929
#include"parser/parse_expr.h"
3030
#include"parser/parse_func.h"
3131
#include"parser/parse_relation.h"
32+
#include"parser/parse_type.h"
3233
#include"utils/acl.h"
3334
#include"utils/builtins.h"
3435
#include"utils/fmgroids.h"

‎src/backend/parser/parse_target.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/parser/parse_target.c,v 1.59 2000/05/30 00:49:50 momjian Exp $
11+
* $Header: /cvsroot/pgsql/src/backend/parser/parse_target.c,v 1.60 2000/06/15 03:32:20 momjian Exp $
1212
*
1313
*-------------------------------------------------------------------------
1414
*/
@@ -20,6 +20,7 @@
2020
#include"parser/parse_func.h"
2121
#include"parser/parse_relation.h"
2222
#include"parser/parse_target.h"
23+
#include"parser/parse_type.h"
2324

2425

2526
staticList*ExpandAllTables(ParseState*pstate);

‎src/backend/rewrite/rewriteHandler.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/rewrite/rewriteHandler.c,v 1.75 2000/06/12 19:40:42 momjian Exp $
10+
* $Header: /cvsroot/pgsql/src/backend/rewrite/rewriteHandler.c,v 1.76 2000/06/15 03:32:22 momjian Exp $
1111
*
1212
*-------------------------------------------------------------------------
1313
*/
@@ -26,6 +26,7 @@
2626
#include"parser/parse_oper.h"
2727
#include"parser/parse_target.h"
2828
#include"parser/parsetree.h"
29+
#include"parser/parse_type.h"
2930
#include"rewrite/locks.h"
3031
#include"rewrite/rewriteManip.h"
3132
#include"utils/acl.h"

‎src/backend/storage/file/buffile.c

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -7,7 +7,7 @@
77
* Portions Copyright (c) 1994, Regents of the University of California
88
*
99
* IDENTIFICATION
10-
* $Header: /cvsroot/pgsql/src/backend/storage/file/buffile.c,v 1.6 2000/06/08 22:37:22 momjian Exp $
10+
* $Header: /cvsroot/pgsql/src/backend/storage/file/buffile.c,v 1.7 2000/06/15 03:32:26 momjian Exp $
1111
*
1212
* NOTES:
1313
*
@@ -36,6 +36,7 @@
3636

3737
#include"postgres.h"
3838

39+
#include"storage/fd.h"
3940
#include"storage/buffile.h"
4041

4142
/*

0 commit comments

Comments
 (0)

[8]ページ先頭

©2009-2025 Movatter.jp