File tree 10 files changed +11
-19
lines changed
10 files changed +11
-19
lines changed Original file line number Diff line number Diff line change 8
8
* Portions Copyright (c) 1994, Regents of the University of California
9
9
*
10
10
* IDENTIFICATION
11
- * $PostgreSQL: pgsql/src/backend/access/gin/ginentrypage.c,v 1.13 2008/05/12 00:00:44 alvherre Exp $
11
+ * $PostgreSQL: pgsql/src/backend/access/gin/ginentrypage.c,v 1.14 2008/05/12 16:06:09 alvherre Exp $
12
12
*-------------------------------------------------------------------------
13
13
*/
14
14
15
15
#include "postgres.h"
16
16
#include "access/gin.h"
17
17
#include "access/tuptoaster.h"
18
- #include "storage/bufmgr.h"
19
18
20
19
/*
21
20
* forms tuple for entry tree. On leaf page, Index tuple has
Original file line number Diff line number Diff line change 8
8
*
9
9
*
10
10
* IDENTIFICATION
11
- * $PostgreSQL: pgsql/src/backend/access/heap/heapam.c,v 1.256 2008/05/12 00:00:44 alvherre Exp $
11
+ * $PostgreSQL: pgsql/src/backend/access/heap/heapam.c,v 1.257 2008/05/12 16:06:09 alvherre Exp $
12
12
*
13
13
*
14
14
* INTERFACE ROUTINES
52
52
#include "catalog/namespace.h"
53
53
#include "miscadmin.h"
54
54
#include "pgstat.h"
55
- #include "storage/bufmgr.h"
56
55
#include "storage/lmgr.h"
57
56
#include "storage/procarray.h"
58
57
#include "storage/smgr.h"
Original file line number Diff line number Diff line change 8
8
*
9
9
*
10
10
* IDENTIFICATION
11
- * $PostgreSQL: pgsql/src/backend/access/heap/hio.c,v 1.69 2008/05/12 00:00:45 alvherre Exp $
11
+ * $PostgreSQL: pgsql/src/backend/access/heap/hio.c,v 1.70 2008/05/12 16:06:09 alvherre Exp $
12
12
*
13
13
*-------------------------------------------------------------------------
14
14
*/
15
15
16
16
#include "postgres.h"
17
17
18
18
#include "access/hio.h"
19
- #include "storage/bufmgr.h"
20
19
#include "storage/bufpage.h"
21
20
#include "storage/freespace.h"
22
21
#include "storage/lmgr.h"
Original file line number Diff line number Diff line change 8
8
*
9
9
*
10
10
* IDENTIFICATION
11
- * $PostgreSQL: pgsql/src/backend/access/heap/pruneheap.c,v 1.10 2008/05/12 00:00:45 alvherre Exp $
11
+ * $PostgreSQL: pgsql/src/backend/access/heap/pruneheap.c,v 1.11 2008/05/12 16:06:09 alvherre Exp $
12
12
*
13
13
*-------------------------------------------------------------------------
14
14
*/
19
19
#include "access/transam.h"
20
20
#include "miscadmin.h"
21
21
#include "pgstat.h"
22
- #include "storage/bufmgr.h"
23
22
#include "storage/bufpage.h"
24
23
#include "storage/off.h"
25
24
#include "utils/inval.h"
Original file line number Diff line number Diff line change 96
96
* Portions Copyright (c) 1994-5, Regents of the University of California
97
97
*
98
98
* IDENTIFICATION
99
- * $PostgreSQL: pgsql/src/backend/access/heap/rewriteheap.c,v 1.11 2008/05/12 00:00:45 alvherre Exp $
99
+ * $PostgreSQL: pgsql/src/backend/access/heap/rewriteheap.c,v 1.12 2008/05/12 16:06:09 alvherre Exp $
100
100
*
101
101
*-------------------------------------------------------------------------
102
102
*/
106
106
#include "access/rewriteheap.h"
107
107
#include "access/transam.h"
108
108
#include "access/tuptoaster.h"
109
- #include "storage/bufmgr.h"
110
109
#include "storage/smgr.h"
111
110
#include "utils/memutils.h"
112
111
Original file line number Diff line number Diff line change 7
7
* Portions Copyright (c) 1996-2008, PostgreSQL Global Development Group
8
8
* Portions Copyright (c) 1994, Regents of the University of California
9
9
*
10
- * $PostgreSQL: pgsql/src/backend/access/transam/xlog.c,v 1.305 2008/05/12 14:27:47 mha Exp $
10
+ * $PostgreSQL: pgsql/src/backend/access/transam/xlog.c,v 1.306 2008/05/12 16:06:09 alvherre Exp $
11
11
*
12
12
*-------------------------------------------------------------------------
13
13
*/
40
40
#include "miscadmin.h"
41
41
#include "pgstat.h"
42
42
#include "postmaster/bgwriter.h"
43
- #include "storage/bufmgr.h"
44
43
#include "storage/bufpage.h"
45
44
#include "storage/fd.h"
46
45
#include "storage/ipc.h"
Original file line number Diff line number Diff line change 11
11
* Portions Copyright (c) 1996-2008, PostgreSQL Global Development Group
12
12
* Portions Copyright (c) 1994, Regents of the University of California
13
13
*
14
- * $PostgreSQL: pgsql/src/backend/access/transam/xlogutils.c,v 1.52 2008/05/12 00:00:46 alvherre Exp $
14
+ * $PostgreSQL: pgsql/src/backend/access/transam/xlogutils.c,v 1.53 2008/05/12 16:06:09 alvherre Exp $
15
15
*
16
16
*-------------------------------------------------------------------------
17
17
*/
18
18
#include "postgres.h"
19
19
20
20
#include "access/xlogutils.h"
21
- #include "storage/bufmgr.h"
22
21
#include "storage/bufpage.h"
23
22
#include "storage/smgr.h"
24
23
#include "utils/hsearch.h"
Original file line number Diff line number Diff line change 8
8
*
9
9
*
10
10
* IDENTIFICATION
11
- * $PostgreSQL: pgsql/src/backend/commands/analyze.c,v 1.120 2008/05/12 00:00:47 alvherre Exp $
11
+ * $PostgreSQL: pgsql/src/backend/commands/analyze.c,v 1.121 2008/05/12 16:06:09 alvherre Exp $
12
12
*
13
13
*-------------------------------------------------------------------------
14
14
*/
33
33
#include "parser/parse_relation.h"
34
34
#include "pgstat.h"
35
35
#include "postmaster/autovacuum.h"
36
- #include "storage/bufmgr.h"
37
36
#include "storage/proc.h"
38
37
#include "storage/procarray.h"
39
38
#include "utils/acl.h"
Original file line number Diff line number Diff line change 8
8
*
9
9
*
10
10
* IDENTIFICATION
11
- * $PostgreSQL: pgsql/src/backend/storage/buffer/bufmgr.c,v 1.229 2008/05/12 00:00:50 alvherre Exp $
11
+ * $PostgreSQL: pgsql/src/backend/storage/buffer/bufmgr.c,v 1.230 2008/05/12 16:06:09 alvherre Exp $
12
12
*
13
13
*-------------------------------------------------------------------------
14
14
*/
36
36
#include "miscadmin.h"
37
37
#include "postmaster/bgwriter.h"
38
38
#include "storage/buf_internals.h"
39
- #include "storage/bufmgr.h"
40
39
#include "storage/bufpage.h"
41
40
#include "storage/ipc.h"
42
41
#include "storage/proc.h"
Original file line number Diff line number Diff line change 7
7
* Portions Copyright (c) 1996-2008, PostgreSQL Global Development Group
8
8
* Portions Copyright (c) 1994, Regents of the University of California
9
9
*
10
- * $PostgreSQL: pgsql/src/include/storage/bufpage.h,v 1.78 2008/05/12 00:00:53 alvherre Exp $
10
+ * $PostgreSQL: pgsql/src/include/storage/bufpage.h,v 1.79 2008/05/12 16:06:10 alvherre Exp $
11
11
*
12
12
*-------------------------------------------------------------------------
13
13
*/
14
14
#ifndef BUFPAGE_H
15
15
#define BUFPAGE_H
16
16
17
17
#include "access/xlog.h"
18
+ #include "storage/bufmgr.h"
18
19
#include "storage/item.h"
19
20
#include "storage/off.h"
20
21
You can’t perform that action at this time.
0 commit comments