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

Commit3a534ad

Browse files
committed
Alphabetically order reference to include files, "G" - "M".
1 parent0031f99 commit3a534ad

File tree

14 files changed

+37
-37
lines changed

14 files changed

+37
-37
lines changed

‎contrib/intagg/int_aggregate.c

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -5,7 +5,7 @@
55
* DMN Digital Music Network.
66
* www.dmn.com
77
*
8-
* $PostgreSQL: pgsql/contrib/intagg/int_aggregate.c,v 1.24 2006/05/30 22:12:13 tgl Exp $
8+
* $PostgreSQL: pgsql/contrib/intagg/int_aggregate.c,v 1.25 2006/07/11 17:04:12 momjian Exp $
99
*
1010
* Copyright (C) Digital Music Network
1111
* December 20, 2001
@@ -20,18 +20,18 @@
2020
#include<sys/types.h>
2121

2222
#include"access/heapam.h"
23+
#include"access/tupmacs.h"
24+
#include"access/xact.h"
2325
#include"catalog/indexing.h"
2426
#include"catalog/pg_proc.h"
2527
#include"catalog/pg_type.h"
2628
#include"executor/executor.h"
27-
#include"utils/syscache.h"
28-
#include"access/tupmacs.h"
29-
#include"access/xact.h"
3029
#include"fmgr.h"
3130
#include"miscadmin.h"
3231
#include"utils/array.h"
3332
#include"utils/builtins.h"
3433
#include"utils/memutils.h"
34+
#include"utils/syscache.h"
3535
#include"utils/lsyscache.h"
3636

3737
PG_MODULE_MAGIC;

‎contrib/lo/lo.c

Lines changed: 5 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -1,19 +1,19 @@
11
/*
22
*PostgreSQL definitions for managed Large Objects.
33
*
4-
*$PostgreSQL: pgsql/contrib/lo/lo.c,v 1.16 2006/05/30 22:12:13 tgl Exp $
4+
*$PostgreSQL: pgsql/contrib/lo/lo.c,v 1.17 2006/07/11 17:04:12 momjian Exp $
55
*
66
*/
77

88
#include"postgres.h"
99

10-
/* Required for largeobjects */
11-
#include"libpq/libpq-fs.h"
12-
#include"libpq/be-fsstubs.h"
13-
1410
/* Required for SPI */
1511
#include"executor/spi.h"
1612

13+
/* Required for largeobjects */
14+
#include"libpq/be-fsstubs.h"
15+
#include"libpq/libpq-fs.h"
16+
1717
/* Required for triggers */
1818
#include"commands/trigger.h"
1919

‎src/backend/access/common/indextuple.c

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -9,16 +9,16 @@
99
*
1010
*
1111
* IDENTIFICATION
12-
* $PostgreSQL: pgsql/src/backend/access/common/indextuple.c,v 1.76 2006/03/05 15:58:20 momjian Exp $
12+
* $PostgreSQL: pgsql/src/backend/access/common/indextuple.c,v 1.77 2006/07/11 17:04:12 momjian Exp $
1313
*
1414
*-------------------------------------------------------------------------
1515
*/
1616

1717
#include"postgres.h"
1818

1919
#include"access/heapam.h"
20-
#include"access/tuptoaster.h"
2120
#include"access/itup.h"
21+
#include"access/tuptoaster.h"
2222
#include"catalog/pg_type.h"
2323

2424

‎src/backend/access/gin/ginarrayproc.c

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -8,7 +8,7 @@
88
* Portions Copyright (c) 1994, Regents of the University of California
99
*
1010
* IDENTIFICATION
11-
* $PostgreSQL: pgsql/src/backend/access/gin/ginarrayproc.c,v 1.1 2006/05/02 11:28:54 teodor Exp $
11+
* $PostgreSQL: pgsql/src/backend/access/gin/ginarrayproc.c,v 1.2 2006/07/11 17:04:12 momjian Exp $
1212
*-------------------------------------------------------------------------
1313
*/
1414

@@ -19,10 +19,10 @@
1919
#include"miscadmin.h"
2020
#include"storage/freespace.h"
2121
#include"utils/array.h"
22+
#include"utils/builtins.h"
2223
#include"utils/lsyscache.h"
2324
#include"utils/syscache.h"
2425
#include"utils/typcache.h"
25-
#include"utils/builtins.h"
2626
#include"access/gin.h"
2727

2828
#defineGinOverlapStrategy1

‎src/backend/access/gin/ginvacuum.c

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -8,7 +8,7 @@
88
* Portions Copyright (c) 1994, Regents of the University of California
99
*
1010
* IDENTIFICATION
11-
* $PostgreSQL: pgsql/src/backend/access/gin/ginvacuum.c,v 1.2 2006/05/02 22:25:10 tgl Exp $
11+
* $PostgreSQL: pgsql/src/backend/access/gin/ginvacuum.c,v 1.3 2006/07/11 17:04:12 momjian Exp $
1212
*-------------------------------------------------------------------------
1313
*/
1414

@@ -19,9 +19,9 @@
1919
#include"catalog/index.h"
2020
#include"miscadmin.h"
2121
#include"storage/freespace.h"
22-
#include"utils/memutils.h"
2322
#include"storage/freespace.h"
2423
#include"storage/smgr.h"
24+
#include"utils/memutils.h"
2525
#include"commands/vacuum.h"
2626

2727
typedefstruct {

‎src/backend/access/gist/gistget.c

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -8,14 +8,14 @@
88
* Portions Copyright (c) 1994, Regents of the University of California
99
*
1010
* IDENTIFICATION
11-
* $PostgreSQL: pgsql/src/backend/access/gist/gistget.c,v 1.58 2006/06/28 12:00:14 teodor Exp $
11+
* $PostgreSQL: pgsql/src/backend/access/gist/gistget.c,v 1.59 2006/07/11 17:04:12 momjian Exp $
1212
*
1313
*-------------------------------------------------------------------------
1414
*/
1515
#include"postgres.h"
1616

17-
#include"access/itup.h"
1817
#include"access/gist_private.h"
18+
#include"access/itup.h"
1919
#include"executor/execdebug.h"
2020
#include"pgstat.h"
2121
#include"utils/memutils.h"

‎src/backend/access/gist/gistvacuum.c

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -8,7 +8,7 @@
88
* Portions Copyright (c) 1994, Regents of the University of California
99
*
1010
* IDENTIFICATION
11-
* $PostgreSQL: pgsql/src/backend/access/gist/gistvacuum.c,v 1.23 2006/07/02 02:23:18 momjian Exp $
11+
* $PostgreSQL: pgsql/src/backend/access/gist/gistvacuum.c,v 1.24 2006/07/11 17:04:12 momjian Exp $
1212
*
1313
*-------------------------------------------------------------------------
1414
*/
@@ -21,8 +21,8 @@
2121
#include"catalog/index.h"
2222
#include"commands/vacuum.h"
2323
#include"miscadmin.h"
24-
#include"utils/memutils.h"
2524
#include"storage/freespace.h"
25+
#include"utils/memutils.h"
2626
#include"storage/smgr.h"
2727

2828

‎src/backend/access/transam/multixact.c

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -42,7 +42,7 @@
4242
* Portions Copyright (c) 1996-2006, PostgreSQL Global Development Group
4343
* Portions Copyright (c) 1994, Regents of the University of California
4444
*
45-
* $PostgreSQL: pgsql/src/backend/access/transam/multixact.c,v 1.17 2006/03/2404:32:12 tgl Exp $
45+
* $PostgreSQL: pgsql/src/backend/access/transam/multixact.c,v 1.18 2006/07/11 17:04:13 momjian Exp $
4646
*
4747
*-------------------------------------------------------------------------
4848
*/
@@ -52,9 +52,9 @@
5252
#include"access/slru.h"
5353
#include"access/xact.h"
5454
#include"miscadmin.h"
55-
#include"utils/memutils.h"
5655
#include"storage/backendid.h"
5756
#include"storage/lmgr.h"
57+
#include"utils/memutils.h"
5858
#include"storage/procarray.h"
5959

6060

‎src/backend/catalog/heap.c

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -8,7 +8,7 @@
88
*
99
*
1010
* IDENTIFICATION
11-
* $PostgreSQL: pgsql/src/backend/catalog/heap.c,v 1.306 2006/07/10 16:20:49 alvherre Exp $
11+
* $PostgreSQL: pgsql/src/backend/catalog/heap.c,v 1.307 2006/07/11 17:04:13 momjian Exp $
1212
*
1313
*
1414
* INTERFACE ROUTINES
@@ -29,8 +29,8 @@
2929
*/
3030
#include"postgres.h"
3131

32-
#include"access/heapam.h"
3332
#include"access/genam.h"
33+
#include"access/heapam.h"
3434
#include"catalog/catalog.h"
3535
#include"catalog/dependency.h"
3636
#include"catalog/heap.h"

‎src/backend/commands/indexcmds.c

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -8,7 +8,7 @@
88
*
99
*
1010
* IDENTIFICATION
11-
* $PostgreSQL: pgsql/src/backend/commands/indexcmds.c,v 1.143 2006/07/03 22:45:38 tgl Exp $
11+
* $PostgreSQL: pgsql/src/backend/commands/indexcmds.c,v 1.144 2006/07/11 17:04:13 momjian Exp $
1212
*
1313
*-------------------------------------------------------------------------
1414
*/
@@ -32,10 +32,10 @@
3232
#include"mb/pg_wchar.h"
3333
#include"miscadmin.h"
3434
#include"optimizer/clauses.h"
35-
#include"parser/parsetree.h"
3635
#include"parser/parse_coerce.h"
3736
#include"parser/parse_expr.h"
3837
#include"parser/parse_func.h"
38+
#include"parser/parsetree.h"
3939
#include"utils/acl.h"
4040
#include"utils/builtins.h"
4141
#include"utils/fmgroids.h"

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

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -8,7 +8,7 @@
88
*
99
*
1010
* IDENTIFICATION
11-
* $PostgreSQL: pgsql/src/backend/optimizer/plan/initsplan.c,v 1.118 2006/07/01 18:38:33 tgl Exp $
11+
* $PostgreSQL: pgsql/src/backend/optimizer/plan/initsplan.c,v 1.119 2006/07/11 17:04:13 momjian Exp $
1212
*
1313
*-------------------------------------------------------------------------
1414
*/
@@ -27,9 +27,9 @@
2727
#include"optimizer/restrictinfo.h"
2828
#include"optimizer/tlist.h"
2929
#include"optimizer/var.h"
30-
#include"parser/parsetree.h"
3130
#include"parser/parse_expr.h"
3231
#include"parser/parse_oper.h"
32+
#include"parser/parsetree.h"
3333
#include"utils/builtins.h"
3434
#include"utils/lsyscache.h"
3535
#include"utils/syscache.h"

‎src/backend/utils/mb/mbutils.c

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -4,14 +4,14 @@
44
* (currently mule internal code (mic) is used)
55
* Tatsuo Ishii
66
*
7-
* $PostgreSQL: pgsql/src/backend/utils/mb/mbutils.c,v 1.56 2006/05/21 20:05:19 tgl Exp $
7+
* $PostgreSQL: pgsql/src/backend/utils/mb/mbutils.c,v 1.57 2006/07/11 17:04:13 momjian Exp $
88
*/
99
#include"postgres.h"
1010

1111
#include"access/xact.h"
1212
#include"catalog/namespace.h"
13-
#include"miscadmin.h"
1413
#include"mb/pg_wchar.h"
14+
#include"miscadmin.h"
1515
#include"utils/builtins.h"
1616
#include"utils/memutils.h"
1717
#include"utils/syscache.h"

‎src/backend/utils/misc/guc.c

Lines changed: 6 additions & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -10,7 +10,7 @@
1010
* Written by Peter Eisentraut <peter_e@gmx.net>.
1111
*
1212
* IDENTIFICATION
13-
* $PostgreSQL: pgsql/src/backend/utils/misc/guc.c,v 1.325 2006/06/27 23:25:28 tgl Exp $
13+
* $PostgreSQL: pgsql/src/backend/utils/misc/guc.c,v 1.326 2006/07/11 17:04:13 momjian Exp $
1414
*
1515
*--------------------------------------------------------------------
1616
*/
@@ -25,15 +25,13 @@
2525
#include<syslog.h>
2626
#endif
2727

28-
#include"utils/guc.h"
29-
#include"utils/guc_tables.h"
3028

3129
#include"access/twophase.h"
3230
#include"catalog/namespace.h"
3331
#include"catalog/pg_type.h"
3432
#include"commands/async.h"
35-
#include"commands/variable.h"
3633
#include"commands/vacuum.h"
34+
#include"commands/variable.h"
3735
#include"executor/executor.h"
3836
#include"fmgr.h"
3937
#include"funcapi.h"
@@ -50,10 +48,11 @@
5048
#include"parser/parse_expr.h"
5149
#include"parser/parse_relation.h"
5250
#include"parser/scansup.h"
51+
#include"pgstat.h"
5352
#include"postmaster/autovacuum.h"
5453
#include"postmaster/bgwriter.h"
55-
#include"postmaster/syslogger.h"
5654
#include"postmaster/postmaster.h"
55+
#include"postmaster/syslogger.h"
5756
#include"storage/bufmgr.h"
5857
#include"storage/fd.h"
5958
#include"storage/freespace.h"
@@ -62,10 +61,11 @@
6261
#include"tcop/tcopprot.h"
6362
#include"utils/array.h"
6463
#include"utils/builtins.h"
64+
#include"utils/guc.h"
65+
#include"utils/guc_tables.h"
6566
#include"utils/memutils.h"
6667
#include"utils/pg_locale.h"
6768
#include"utils/ps_status.h"
68-
#include"pgstat.h"
6969
#include"access/gin.h"
7070

7171
#ifndefPG_KRB_SRVTAB

‎src/include/access/gist_private.h

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -7,15 +7,15 @@
77
* Portions Copyright (c) 1996-2006, PostgreSQL Global Development Group
88
* Portions Copyright (c) 1994, Regents of the University of California
99
*
10-
* $PostgreSQL: pgsql/src/include/access/gist_private.h,v 1.20 2006/07/03 22:45:39 tgl Exp $
10+
* $PostgreSQL: pgsql/src/include/access/gist_private.h,v 1.21 2006/07/11 17:04:13 momjian Exp $
1111
*
1212
*-------------------------------------------------------------------------
1313
*/
1414
#ifndefGIST_PRIVATE_H
1515
#defineGIST_PRIVATE_H
1616

17-
#include"access/itup.h"
1817
#include"access/gist.h"
18+
#include"access/itup.h"
1919
#include"access/xlog.h"
2020
#include"access/xlogdefs.h"
2121
#include"fmgr.h"

0 commit comments

Comments
 (0)

[8]ページ先頭

©2009-2025 Movatter.jp