Location via proxy:   [ UP ]  
[Report a bug]   [Manage cookies]                
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 <pgadmin@pse-consulting.de>
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 <Darko.Prenosil@finteh.hr>
99
* Shridhar Daithankar <shridhar_daithankar@persistent.co.in>
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

src/backend/optimizer/path/allpaths.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/path/allpaths.c,v 1.147 2006/07/01 18:38:32 tgl Exp $
11+
* $PostgreSQL: pgsql/src/backend/optimizer/path/allpaths.c,v 1.148 2006/07/11 16:35:31 momjian Exp $
1212
*
1313
*-------------------------------------------------------------------------
1414
*/
@@ -28,9 +28,9 @@
2828
#include "optimizer/planner.h"
2929
#include "optimizer/prep.h"
3030
#include "optimizer/var.h"
31-
#include "parser/parsetree.h"
3231
#include "parser/parse_clause.h"
3332
#include "parser/parse_expr.h"
33+
#include "parser/parsetree.h"
3434
#include "rewrite/rewriteManip.h"
3535

3636

src/backend/optimizer/path/costsize.c

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -54,7 +54,7 @@
5454
* Portions Copyright (c) 1994, Regents of the University of California
5555
*
5656
* IDENTIFICATION
57-
* $PostgreSQL: pgsql/src/backend/optimizer/path/costsize.c,v 1.160 2006/07/01 22:07:23 tgl Exp $
57+
* $PostgreSQL: pgsql/src/backend/optimizer/path/costsize.c,v 1.161 2006/07/11 16:35:31 momjian Exp $
5858
*
5959
*-------------------------------------------------------------------------
6060
*/
@@ -72,8 +72,8 @@
7272
#include "optimizer/plancat.h"
7373
#include "parser/parsetree.h"
7474
#include "utils/array.h"
75-
#include "utils/selfuncs.h"
7675
#include "utils/lsyscache.h"
76+
#include "utils/selfuncs.h"
7777
#include "utils/syscache.h"
7878
#include "utils/tuplesort.h"
7979

src/backend/optimizer/plan/createplan.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/optimizer/plan/createplan.c,v 1.212 2006/07/01 18:38:33 tgl Exp $
13+
* $PostgreSQL: pgsql/src/backend/optimizer/plan/createplan.c,v 1.213 2006/07/11 16:35:31 momjian Exp $
1414
*
1515
*-------------------------------------------------------------------------
1616
*/
@@ -28,9 +28,9 @@
2828
#include "optimizer/restrictinfo.h"
2929
#include "optimizer/tlist.h"
3030
#include "optimizer/var.h"
31-
#include "parser/parsetree.h"
3231
#include "parser/parse_clause.h"
3332
#include "parser/parse_expr.h"
33+
#include "parser/parsetree.h"
3434
#include "utils/lsyscache.h"
3535
#include "utils/syscache.h"
3636

src/backend/parser/analyze.c

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -6,7 +6,7 @@
66
* Portions Copyright (c) 1996-2006, PostgreSQL Global Development Group
77
* Portions Copyright (c) 1994, Regents of the University of California
88
*
9-
* $PostgreSQL: pgsql/src/backend/parser/analyze.c,v 1.338 2006/07/03 22:45:39 tgl Exp $
9+
* $PostgreSQL: pgsql/src/backend/parser/analyze.c,v 1.339 2006/07/11 16:35:31 momjian Exp $
1010
*
1111
*-------------------------------------------------------------------------
1212
*/
@@ -28,16 +28,16 @@
2828
#include "optimizer/var.h"
2929
#include "parser/analyze.h"
3030
#include "parser/gramparse.h"
31-
#include "parser/parsetree.h"
3231
#include "parser/parse_agg.h"
3332
#include "parser/parse_clause.h"
3433
#include "parser/parse_coerce.h"
3534
#include "parser/parse_expr.h"
35+
#include "parser/parse_expr.h"
3636
#include "parser/parse_oper.h"
3737
#include "parser/parse_relation.h"
3838
#include "parser/parse_target.h"
3939
#include "parser/parse_type.h"
40-
#include "parser/parse_expr.h"
40+
#include "parser/parsetree.h"
4141
#include "rewrite/rewriteManip.h"
4242
#include "utils/acl.h"
4343
#include "utils/builtins.h"

src/backend/postmaster/autovacuum.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/postmaster/autovacuum.c,v 1.22 2006/07/10 16:20:50 alvherre Exp $
13+
* $PostgreSQL: pgsql/src/backend/postmaster/autovacuum.c,v 1.23 2006/07/11 16:35:32 momjian Exp $
1414
*
1515
*-------------------------------------------------------------------------
1616
*/
@@ -43,9 +43,9 @@
4343
#include "tcop/tcopprot.h"
4444
#include "utils/flatfiles.h"
4545
#include "utils/fmgroids.h"
46+
#include "utils/lsyscache.h"
4647
#include "utils/memutils.h"
4748
#include "utils/ps_status.h"
48-
#include "utils/lsyscache.h"
4949
#include "utils/rel.h"
5050
#include "utils/relcache.h"
5151
#include "utils/syscache.h"

src/backend/tcop/fastpath.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/tcop/fastpath.c,v 1.88 2006/06/14 01:24:14 tgl Exp $
11+
* $PostgreSQL: pgsql/src/backend/tcop/fastpath.c,v 1.89 2006/07/11 16:35:32 momjian Exp $
1212
*
1313
* NOTES
1414
* This cruft is the server side of PQfn.
@@ -23,8 +23,8 @@
2323
#include "catalog/pg_proc.h"
2424
#include "libpq/libpq.h"
2525
#include "libpq/pqformat.h"
26-
#include "miscadmin.h"
2726
#include "mb/pg_wchar.h"
27+
#include "miscadmin.h"
2828
#include "tcop/fastpath.h"
2929
#include "tcop/tcopprot.h"
3030
#include "utils/acl.h"

src/backend/utils/adt/arrayfuncs.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/utils/adt/arrayfuncs.c,v 1.128 2006/04/04 19:35:35 tgl Exp $
11+
* $PostgreSQL: pgsql/src/backend/utils/adt/arrayfuncs.c,v 1.129 2006/07/11 16:35:32 momjian Exp $
1212
*
1313
*-------------------------------------------------------------------------
1414
*/
@@ -25,8 +25,8 @@
2525
#include "utils/array.h"
2626
#include "utils/builtins.h"
2727
#include "utils/datum.h"
28-
#include "utils/memutils.h"
2928
#include "utils/lsyscache.h"
29+
#include "utils/memutils.h"
3030
#include "utils/syscache.h"
3131
#include "utils/typcache.h"
3232

src/backend/utils/adt/ascii.c

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -5,14 +5,14 @@
55
* Portions Copyright (c) 1999-2006, PostgreSQL Global Development Group
66
*
77
* IDENTIFICATION
8-
* $PostgreSQL: pgsql/src/backend/utils/adt/ascii.c,v 1.27 2006/03/05 15:58:41 momjian Exp $
8+
* $PostgreSQL: pgsql/src/backend/utils/adt/ascii.c,v 1.28 2006/07/11 16:35:33 momjian Exp $
99
*
1010
*-----------------------------------------------------------------------
1111
*/
1212
#include "postgres.h"
1313

14-
#include "utils/builtins.h"
1514
#include "mb/pg_wchar.h"
15+
#include "utils/builtins.h"
1616
#include "utils/ascii.h"
1717

1818
static void pg_to_ascii(unsigned char *src, unsigned char *src_end,

src/backend/utils/adt/format_type.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/utils/adt/format_type.c,v 1.42 2006/03/05 15:58:42 momjian Exp $
11+
* $PostgreSQL: pgsql/src/backend/utils/adt/format_type.c,v 1.43 2006/07/11 16:35:33 momjian Exp $
1212
*
1313
*-------------------------------------------------------------------------
1414
*/
@@ -22,8 +22,8 @@
2222
#include "fmgr.h"
2323
#include "utils/builtins.h"
2424
#include "utils/datetime.h"
25-
#include "utils/numeric.h"
2625
#include "utils/lsyscache.h"
26+
#include "utils/numeric.h"
2727
#include "utils/syscache.h"
2828
#include "mb/pg_wchar.h"
2929

src/backend/utils/cache/catcache.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/utils/cache/catcache.c,v 1.129 2006/06/15 02:08:09 tgl Exp $
11+
* $PostgreSQL: pgsql/src/backend/utils/cache/catcache.c,v 1.130 2006/07/11 16:35:33 momjian Exp $
1212
*
1313
*-------------------------------------------------------------------------
1414
*/
@@ -27,8 +27,8 @@
2727
#include "storage/ipc.h" /* for on_proc_exit */
2828
#endif
2929
#include "utils/builtins.h"
30-
#include "utils/fmgroids.h"
3130
#include "utils/catcache.h"
31+
#include "utils/fmgroids.h"
3232
#include "utils/memutils.h"
3333
#include "utils/relcache.h"
3434
#include "utils/resowner.h"

0 commit comments

Comments
 (0)