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

Skip to content

Commit ac230e7

Browse files
committed
Alphabetically order reference to include files, "S"-"Z".
1 parent 0ff3461 commit ac230e7

File tree

16 files changed

+67
-67
lines changed

16 files changed

+67
-67
lines changed

contrib/pg_trgm/trgm.h

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -5,9 +5,9 @@
55

66
#include "access/gist.h"
77
#include "access/itup.h"
8+
#include "utils/builtins.h"
89
#include "utils/elog.h"
910
#include "utils/palloc.h"
10-
#include "utils/builtins.h"
1111
#include "storage/bufpage.h"
1212

1313
/* options */

contrib/tsearch2/tsvector.c

Lines changed: 5 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -6,15 +6,15 @@
66
*/
77
#include "postgres.h"
88

9+
910
#include "access/gist.h"
1011
#include "access/itup.h"
11-
#include "utils/builtins.h"
12-
#include "storage/bufpage.h"
13-
#include "executor/spi.h"
12+
#include "catalog/namespace.h"
1413
#include "commands/trigger.h"
14+
#include "executor/spi.h"
1515
#include "nodes/pg_list.h"
16-
#include "catalog/namespace.h"
17-
16+
#include "storage/bufpage.h"
17+
#include "utils/builtins.h"
1818
#include "utils/pg_locale.h"
1919
#include "mb/pg_wchar.h"
2020

contrib/tsearch2/tsvector_op.c

Lines changed: 5 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -4,15 +4,15 @@
44
*/
55
#include "postgres.h"
66

7+
78
#include "access/gist.h"
89
#include "access/itup.h"
9-
#include "utils/builtins.h"
10-
#include "storage/bufpage.h"
11-
#include "executor/spi.h"
10+
#include "catalog/namespace.h"
1211
#include "commands/trigger.h"
12+
#include "executor/spi.h"
1313
#include "nodes/pg_list.h"
14-
#include "catalog/namespace.h"
15-
14+
#include "storage/bufpage.h"
15+
#include "utils/builtins.h"
1616
#include "utils/pg_locale.h"
1717

1818
#include "tsvector.h"

src/backend/access/heap/tuptoaster.c

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -8,7 +8,7 @@
88
*
99
*
1010
* IDENTIFICATION
11-
* $PostgreSQL: pgsql/src/backend/access/heap/tuptoaster.c,v 1.60 2006/06/16 18:42:21 tgl Exp $
11+
* $PostgreSQL: pgsql/src/backend/access/heap/tuptoaster.c,v 1.61 2006/07/11 18:26:10 momjian Exp $
1212
*
1313
*
1414
* INTERFACE ROUTINES
@@ -30,14 +30,14 @@
3030
#include <unistd.h>
3131
#include <fcntl.h>
3232

33-
#include "access/heapam.h"
3433
#include "access/genam.h"
34+
#include "access/heapam.h"
3535
#include "access/tuptoaster.h"
3636
#include "catalog/catalog.h"
37-
#include "utils/rel.h"
3837
#include "utils/builtins.h"
3938
#include "utils/fmgroids.h"
4039
#include "utils/pg_lzcompress.h"
40+
#include "utils/rel.h"
4141
#include "utils/typcache.h"
4242

4343

src/backend/commands/tablecmds.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/tablecmds.c,v 1.193 2006/07/10 22:10:39 tgl Exp $
11+
* $PostgreSQL: pgsql/src/backend/commands/tablecmds.c,v 1.194 2006/07/11 18:26:10 momjian Exp $
1212
*
1313
*-------------------------------------------------------------------------
1414
*/
@@ -45,13 +45,13 @@
4545
#include "optimizer/prep.h"
4646
#include "parser/analyze.h"
4747
#include "parser/gramparse.h"
48-
#include "parser/parser.h"
4948
#include "parser/parse_clause.h"
5049
#include "parser/parse_coerce.h"
5150
#include "parser/parse_expr.h"
5251
#include "parser/parse_oper.h"
5352
#include "parser/parse_relation.h"
5453
#include "parser/parse_type.h"
54+
#include "parser/parser.h"
5555
#include "rewrite/rewriteHandler.h"
5656
#include "storage/smgr.h"
5757
#include "utils/acl.h"

src/backend/commands/typecmds.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/typecmds.c,v 1.92 2006/07/02 02:23:19 momjian Exp $
11+
* $PostgreSQL: pgsql/src/backend/commands/typecmds.c,v 1.93 2006/07/11 18:26:10 momjian Exp $
1212
*
1313
* DESCRIPTION
1414
* The "DefineFoo" routines take the parse tree and pick out the
@@ -31,8 +31,8 @@
3131
*/
3232
#include "postgres.h"
3333

34-
#include "access/heapam.h"
3534
#include "access/genam.h"
35+
#include "access/heapam.h"
3636
#include "catalog/dependency.h"
3737
#include "catalog/heap.h"
3838
#include "catalog/indexing.h"

src/backend/optimizer/plan/subselect.c

Lines changed: 2 additions & 2 deletions
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-
* $PostgreSQL: pgsql/src/backend/optimizer/plan/subselect.c,v 1.108 2006/06/28 20:04:38 tgl Exp $
10+
* $PostgreSQL: pgsql/src/backend/optimizer/plan/subselect.c,v 1.109 2006/07/11 18:26:10 momjian Exp $
1111
*
1212
*-------------------------------------------------------------------------
1313
*/
@@ -23,9 +23,9 @@
2323
#include "optimizer/planner.h"
2424
#include "optimizer/subselect.h"
2525
#include "optimizer/var.h"
26-
#include "parser/parsetree.h"
2726
#include "parser/parse_expr.h"
2827
#include "parser/parse_relation.h"
28+
#include "parser/parsetree.h"
2929
#include "rewrite/rewriteManip.h"
3030
#include "utils/builtins.h"
3131
#include "utils/lsyscache.h"

src/backend/postmaster/syslogger.c

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -18,7 +18,7 @@
1818
*
1919
*
2020
* IDENTIFICATION
21-
* $PostgreSQL: pgsql/src/backend/postmaster/syslogger.c,v 1.26 2006/06/27 22:16:43 momjian Exp $
21+
* $PostgreSQL: pgsql/src/backend/postmaster/syslogger.c,v 1.27 2006/07/11 18:26:10 momjian Exp $
2222
*
2323
*-------------------------------------------------------------------------
2424
*/
@@ -33,10 +33,10 @@
3333

3434
#include "libpq/pqsignal.h"
3535
#include "miscadmin.h"
36+
#include "pgtime.h"
3637
#include "postmaster/fork_process.h"
3738
#include "postmaster/postmaster.h"
3839
#include "postmaster/syslogger.h"
39-
#include "pgtime.h"
4040
#include "storage/ipc.h"
4141
#include "storage/pg_shmem.h"
4242
#include "utils/guc.h"

src/backend/tcop/utility.c

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -10,7 +10,7 @@
1010
*
1111
*
1212
* IDENTIFICATION
13-
* $PostgreSQL: pgsql/src/backend/tcop/utility.c,v 1.259 2006/07/02 02:23:21 momjian Exp $
13+
* $PostgreSQL: pgsql/src/backend/tcop/utility.c,v 1.260 2006/07/11 18:26:11 momjian Exp $
1414
*
1515
*-------------------------------------------------------------------------
1616
*/
@@ -24,8 +24,8 @@
2424
#include "commands/async.h"
2525
#include "commands/cluster.h"
2626
#include "commands/comment.h"
27-
#include "commands/copy.h"
2827
#include "commands/conversioncmds.h"
28+
#include "commands/copy.h"
2929
#include "commands/dbcommands.h"
3030
#include "commands/defrem.h"
3131
#include "commands/explain.h"

src/backend/utils/adt/varchar.c

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -8,12 +8,13 @@
88
*
99
*
1010
* IDENTIFICATION
11-
* $PostgreSQL: pgsql/src/backend/utils/adt/varchar.c,v 1.116 2006/05/21 20:05:19 tgl Exp $
11+
* $PostgreSQL: pgsql/src/backend/utils/adt/varchar.c,v 1.117 2006/07/11 18:26:11 momjian Exp $
1212
*
1313
*-------------------------------------------------------------------------
1414
*/
1515
#include "postgres.h"
1616

17+
1718
#include "access/hash.h"
1819
#include "catalog/pg_type.h"
1920
#include "lib/stringinfo.h"
@@ -22,7 +23,6 @@
2223
#include "utils/array.h"
2324
#include "utils/builtins.h"
2425
#include "utils/fmgroids.h"
25-
2626
#include "mb/pg_wchar.h"
2727

2828

0 commit comments

Comments
 (0)