Thanks to visit codestin.com
Credit goes to github.com

Skip to content

Commit 3a534ad

Browse files
committed
Alphabetically order reference to include files, "G" - "M".
1 parent 0031f99 commit 3a534ad

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
#define GinOverlapStrategy 1

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
typedef struct {

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/24 04: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"

0 commit comments

Comments
 (0)