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

Skip to content

Commit fa60135

Browse files
committed
Sort reference of include files, "A" - "F".
1 parent c469aed commit fa60135

File tree

23 files changed

+50
-50
lines changed

23 files changed

+50
-50
lines changed

contrib/adminpack/adminpack.c

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -8,7 +8,7 @@
88
* Author: Andreas Pflug <[email protected]>
99
*
1010
* IDENTIFICATION
11-
* $PostgreSQL: pgsql/contrib/adminpack/adminpack.c,v 1.2 2006/05/30 21:34:15 tgl Exp $
11+
* $PostgreSQL: pgsql/contrib/adminpack/adminpack.c,v 1.3 2006/07/11 16:35:30 momjian Exp $
1212
*
1313
*-------------------------------------------------------------------------
1414
*/
@@ -20,9 +20,9 @@
2020
#include <dirent.h>
2121

2222
#include "miscadmin.h"
23-
#include "storage/fd.h"
2423
#include "catalog/pg_type.h"
2524
#include "funcapi.h"
25+
#include "storage/fd.h"
2626
#include "utils/datetime.h"
2727

2828

contrib/btree_gist/btree_utils_var.c

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
#include "btree_gist.h"
2-
#include "utils/pg_locale.h"
32
#include "btree_utils_var.h"
3+
#include "utils/pg_locale.h"
44
#include "utils/builtins.h"
55

66
PG_FUNCTION_INFO_V1(gbt_var_decompress);

contrib/dblink/dblink.c

Lines changed: 6 additions & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -8,7 +8,7 @@
88
* Darko Prenosil <[email protected]>
99
* Shridhar Daithankar <[email protected]>
1010
*
11-
* $PostgreSQL: pgsql/contrib/dblink/dblink.c,v 1.56 2006/06/21 16:43:11 joe Exp $
11+
* $PostgreSQL: pgsql/contrib/dblink/dblink.c,v 1.57 2006/07/11 16:35:31 momjian Exp $
1212
* Copyright (c) 2001-2006, PostgreSQL Global Development Group
1313
* ALL RIGHTS RESERVED;
1414
*
@@ -37,26 +37,26 @@
3737
#include "libpq-fe.h"
3838
#include "fmgr.h"
3939
#include "funcapi.h"
40-
#include "access/tupdesc.h"
4140
#include "access/heapam.h"
41+
#include "access/tupdesc.h"
4242
#include "catalog/namespace.h"
4343
#include "catalog/pg_index.h"
4444
#include "catalog/pg_type.h"
4545
#include "executor/executor.h"
4646
#include "executor/spi.h"
4747
#include "lib/stringinfo.h"
48-
#include "nodes/nodes.h"
4948
#include "nodes/execnodes.h"
49+
#include "nodes/nodes.h"
5050
#include "nodes/pg_list.h"
5151
#include "parser/parse_type.h"
5252
#include "tcop/tcopprot.h"
53+
#include "utils/array.h"
5354
#include "utils/builtins.h"
55+
#include "utils/dynahash.h"
5456
#include "utils/fmgroids.h"
55-
#include "utils/array.h"
57+
#include "utils/hsearch.h"
5658
#include "utils/lsyscache.h"
5759
#include "utils/syscache.h"
58-
#include "utils/dynahash.h"
59-
#include "utils/hsearch.h"
6060
#include "utils/memutils.h"
6161

6262
#include "dblink.h"

contrib/tsearch2/common.c

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -2,8 +2,8 @@
22

33
#include "postgres.h"
44
#include "fmgr.h"
5-
#include "catalog/pg_proc.h"
65
#include "catalog/pg_namespace.h"
6+
#include "catalog/pg_proc.h"
77
#include "utils/syscache.h"
88
#include "miscadmin.h"
99

contrib/tsearch2/dict_snowball.c

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
/* $PostgreSQL: pgsql/contrib/tsearch2/dict_snowball.c,v 1.11 2006/03/11 04:38:30 momjian Exp $ */
1+
/* $PostgreSQL: pgsql/contrib/tsearch2/dict_snowball.c,v 1.12 2006/07/11 16:35:31 momjian Exp $ */
22

33
/*
44
* example of Snowball dictionary
@@ -9,8 +9,8 @@
99

1010
#include "dict.h"
1111
#include "common.h"
12-
#include "snowball/header.h"
1312
#include "snowball/english_stem.h"
13+
#include "snowball/header.h"
1414
#include "snowball/russian_stem.h"
1515
#include "snowball/russian_stem_UTF8.h"
1616
#include "ts_locale.h"

src/backend/commands/conversioncmds.c

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -8,21 +8,21 @@
88
*
99
*
1010
* IDENTIFICATION
11-
* $PostgreSQL: pgsql/src/backend/commands/conversioncmds.c,v 1.27 2006/03/05 15:58:23 momjian Exp $
11+
* $PostgreSQL: pgsql/src/backend/commands/conversioncmds.c,v 1.28 2006/07/11 16:35:31 momjian Exp $
1212
*
1313
*-------------------------------------------------------------------------
1414
*/
1515
#include "postgres.h"
1616

17-
#include "catalog/pg_conversion.h"
1817
#include "access/heapam.h"
1918
#include "catalog/catalog.h"
2019
#include "catalog/dependency.h"
2120
#include "catalog/indexing.h"
2221
#include "catalog/namespace.h"
22+
#include "catalog/pg_conversion.h"
2323
#include "catalog/pg_type.h"
24-
#include "mb/pg_wchar.h"
2524
#include "commands/conversioncmds.h"
25+
#include "mb/pg_wchar.h"
2626
#include "miscadmin.h"
2727
#include "parser/parse_func.h"
2828
#include "utils/acl.h"

src/backend/executor/execGrouping.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/executor/execGrouping.c,v 1.19 2006/06/28 17:05:49 tgl Exp $
11+
* $PostgreSQL: pgsql/src/backend/executor/execGrouping.c,v 1.20 2006/07/11 16:35:31 momjian Exp $
1212
*
1313
*-------------------------------------------------------------------------
1414
*/
@@ -18,8 +18,8 @@
1818
#include "access/heapam.h"
1919
#include "executor/executor.h"
2020
#include "parser/parse_oper.h"
21-
#include "utils/memutils.h"
2221
#include "utils/lsyscache.h"
22+
#include "utils/memutils.h"
2323
#include "utils/syscache.h"
2424

2525

src/backend/executor/execMain.c

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -26,7 +26,7 @@
2626
*
2727
*
2828
* IDENTIFICATION
29-
* $PostgreSQL: pgsql/src/backend/executor/execMain.c,v 1.273 2006/07/03 22:45:38 tgl Exp $
29+
* $PostgreSQL: pgsql/src/backend/executor/execMain.c,v 1.274 2006/07/11 16:35:31 momjian Exp $
3030
*
3131
*-------------------------------------------------------------------------
3232
*/
@@ -46,8 +46,8 @@
4646
#include "miscadmin.h"
4747
#include "optimizer/clauses.h"
4848
#include "optimizer/var.h"
49-
#include "parser/parsetree.h"
5049
#include "parser/parse_clause.h"
50+
#include "parser/parsetree.h"
5151
#include "storage/smgr.h"
5252
#include "utils/acl.h"
5353
#include "utils/guc.h"

src/backend/executor/execUtils.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/executor/execUtils.c,v 1.135 2006/06/16 18:42:22 tgl Exp $
11+
* $PostgreSQL: pgsql/src/backend/executor/execUtils.c,v 1.136 2006/07/11 16:35:31 momjian Exp $
1212
*
1313
*-------------------------------------------------------------------------
1414
*/
@@ -43,8 +43,8 @@
4343

4444
#include "access/genam.h"
4545
#include "access/heapam.h"
46-
#include "catalog/index.h"
4746
#include "catalog/catalog.h"
47+
#include "catalog/index.h"
4848
#include "catalog/pg_index.h"
4949
#include "executor/execdebug.h"
5050
#include "miscadmin.h"

src/backend/libpq/crypt.c

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -9,7 +9,7 @@
99
* Portions Copyright (c) 1996-2006, PostgreSQL Global Development Group
1010
* Portions Copyright (c) 1994, Regents of the University of California
1111
*
12-
* $PostgreSQL: pgsql/src/backend/libpq/crypt.c,v 1.69 2006/06/20 19:56:52 tgl Exp $
12+
* $PostgreSQL: pgsql/src/backend/libpq/crypt.c,v 1.70 2006/07/11 16:35:31 momjian Exp $
1313
*
1414
*-------------------------------------------------------------------------
1515
*/
@@ -24,8 +24,8 @@
2424
#include "libpq/libpq.h"
2525
#include "libpq/md5.h"
2626
#include "miscadmin.h"
27-
#include "storage/fd.h"
2827
#include "nodes/pg_list.h"
28+
#include "storage/fd.h"
2929
#include "utils/timestamp.h"
3030

3131

0 commit comments

Comments
 (0)