Location via proxy:   [ UP ]  
[Report a bug]   [Manage cookies]                
Skip to content

Commit 03eb5a5

Browse files
committed
There, that cleans *that* out
1 parent 050d148 commit 03eb5a5

File tree

5 files changed

+37
-89
lines changed

5 files changed

+37
-89
lines changed

src/backend/access/transam/transam.c

Lines changed: 9 additions & 18 deletions
Original file line numberDiff line numberDiff line change
@@ -7,7 +7,7 @@
77
*
88
*
99
* IDENTIFICATION
10-
* $Header: /cvsroot/pgsql/src/backend/access/transam/transam.c,v 1.4 1996/11/03 22:58:18 scrappy Exp $
10+
* $Header: /cvsroot/pgsql/src/backend/access/transam/transam.c,v 1.5 1996/11/05 11:12:28 scrappy Exp $
1111
*
1212
* NOTES
1313
* This file contains the high level access-method interface to the
@@ -16,24 +16,15 @@
1616
*-------------------------------------------------------------------------
1717
*/
1818

19-
#include "postgres.h"
19+
#include <postgres.h>
2020

21-
#include "utils/rel.h"
22-
#include "access/transam.h"
23-
#include "access/xact.h"
24-
25-
#include "nodes/memnodes.h"
26-
27-
#include "access/htup.h"
28-
#include "access/heapam.h"
29-
30-
#include "utils/mcxt.h"
31-
32-
#include "catalog/catname.h"
33-
34-
#include "storage/spin.h"
35-
36-
#include "commands/vacuum.h"
21+
#include <access/transam.h>
22+
#include <access/xact.h>
23+
#include <access/heapam.h>
24+
#include <utils/mcxt.h>
25+
#include <catalog/catname.h>
26+
#include <storage/spin.h>
27+
#include <commands/vacuum.h>
3728

3829
/* ----------------
3930
* global variables holding pointers to relations used

src/backend/access/transam/transsup.c

Lines changed: 6 additions & 10 deletions
Original file line numberDiff line numberDiff line change
@@ -7,7 +7,7 @@
77
*
88
*
99
* IDENTIFICATION
10-
* $Header: /cvsroot/pgsql/src/backend/access/transam/Attic/transsup.c,v 1.5 1996/11/03 22:58:20 scrappy Exp $
10+
* $Header: /cvsroot/pgsql/src/backend/access/transam/Attic/transsup.c,v 1.6 1996/11/05 11:12:30 scrappy Exp $
1111
*
1212
* NOTES
1313
* This file contains support functions for the high
@@ -16,16 +16,12 @@
1616
*-------------------------------------------------------------------------
1717
*/
1818

19-
#include "postgres.h"
19+
#include <postgres.h>
2020

21-
#include "utils/rel.h"
22-
#include "access/transam.h"
23-
24-
#include "utils/bit.h"
25-
26-
#include "access/xact.h"
27-
28-
#include "storage/lmgr.h"
21+
#include <access/transam.h>
22+
#include <utils/bit.h>
23+
#include <access/xact.h>
24+
#include <storage/lmgr.h>
2925

3026
/* ----------------------------------------------------------------
3127
* general support routines

src/backend/access/transam/varsup.c

Lines changed: 7 additions & 19 deletions
Original file line numberDiff line numberDiff line change
@@ -7,30 +7,18 @@
77
*
88
*
99
* IDENTIFICATION
10-
* $Header: /cvsroot/pgsql/src/backend/access/transam/varsup.c,v 1.5 1996/11/03 22:58:21 scrappy Exp $
10+
* $Header: /cvsroot/pgsql/src/backend/access/transam/varsup.c,v 1.6 1996/11/05 11:12:31 scrappy Exp $
1111
*
1212
*-------------------------------------------------------------------------
1313
*/
1414

15-
#include "postgres.h"
15+
#include <postgres.h>
1616

17-
#include "catalog/pg_attribute.h"
18-
#include "access/tupdesc.h"
19-
#include "storage/bufmgr.h"
20-
#include "utils/nabstime.h"
21-
#include "access/transam.h"
22-
23-
#include "storage/spin.h"
24-
25-
#include "access/xact.h"
26-
27-
#include "storage/off.h"
28-
#include "storage/itemptr.h"
29-
#include "access/htup.h"
30-
#include "access/relscan.h"
31-
#include "access/heapam.h"
32-
33-
#include "catalog/catname.h"
17+
#include <access/transam.h>
18+
#include <storage/spin.h>
19+
#include <access/xact.h>
20+
#include <access/heapam.h>
21+
#include <catalog/catname.h>
3422

3523
/* ---------------------
3624
* spin lock for oid generation

src/backend/access/transam/xact.c

Lines changed: 12 additions & 38 deletions
Original file line numberDiff line numberDiff line change
@@ -7,7 +7,7 @@
77
*
88
*
99
* IDENTIFICATION
10-
* $Header: /cvsroot/pgsql/src/backend/access/transam/xact.c,v 1.3 1996/11/03 22:58:25 scrappy Exp $
10+
* $Header: /cvsroot/pgsql/src/backend/access/transam/xact.c,v 1.4 1996/11/05 11:12:32 scrappy Exp $
1111
*
1212
* NOTES
1313
* Transaction aborts can now occur two ways:
@@ -136,44 +136,18 @@
136136
*-------------------------------------------------------------------------
137137
*/
138138

139-
#include "postgres.h"
139+
#include <postgres.h>
140140

141-
#include "access/xact.h"
142-
143-
#include "access/tupdesc.h"
144-
#include "utils/rel.h"
145-
#include "access/htup.h"
146-
#include "utils/inval.h"
147-
148-
#include "nodes/memnodes.h"
149-
#include "nodes/parsenodes.h"
150-
#include "nodes/params.h"
151-
#include "access/sdir.h"
152-
#include "executor/hashjoin.h"
153-
#include "storage/buf.h"
154-
#include "executor/tuptable.h"
155-
#include "access/funcindex.h"
156-
#include "access/htup.h"
157-
#include "access/relscan.h"
158-
#include "nodes/execnodes.h"
159-
#include "nodes/plannodes.h"
160-
#include "tcop/dest.h"
161-
#include "executor/execdesc.h"
162-
#include "utils/portal.h"
163-
164-
#include "access/transam.h"
165-
166-
#include "storage/proc.h"
167-
168-
#include "utils/mcxt.h"
169-
170-
#include "catalog/heap.h"
171-
172-
#include "utils/relcache.h"
173-
174-
#include "miscadmin.h"
175-
176-
#include "commands/async.h"
141+
#include <access/xact.h>
142+
#include <utils/inval.h>
143+
#include <utils/portal.h>
144+
#include <access/transam.h>
145+
#include <storage/proc.h>
146+
#include <utils/mcxt.h>
147+
#include <catalog/heap.h>
148+
#include <utils/relcache.h>
149+
#include <miscadmin.h>
150+
#include <commands/async.h>
177151

178152
/* ----------------
179153
* global variables holding the current transaction state.

src/backend/access/transam/xid.c

Lines changed: 3 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -7,7 +7,7 @@
77
*
88
*
99
* IDENTIFICATION
10-
* $Header: /cvsroot/pgsql/src/backend/access/transam/Attic/xid.c,v 1.3 1996/11/03 22:58:26 scrappy Exp $
10+
* $Header: /cvsroot/pgsql/src/backend/access/transam/Attic/xid.c,v 1.4 1996/11/05 11:12:33 scrappy Exp $
1111
*
1212
* OLD COMMENTS
1313
* XXX WARNING
@@ -19,11 +19,10 @@
1919
*
2020
*-------------------------------------------------------------------------
2121
*/
22-
#include <stdio.h>
2322

24-
#include "postgres.h"
25-
#include "utils/palloc.h"
23+
#include <stdio.h>
2624

25+
#include <postgres.h>
2726

2827
extern TransactionId NullTransactionId;
2928
extern TransactionId DisabledTransactionId;

0 commit comments

Comments
 (0)