Skip to content

Commit e4ca6ca

Browse files
committed
Change xlog.h to xlogdefs.h in bufpage.h, and fix fallout.
1 parent c1943db commit e4ca6ca

File tree

8 files changed

+16
-9
lines changed

8 files changed

+16
-9
lines changed

src/backend/nodes/print.c

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -8,7 +8,7 @@
88
*
99
*
1010
* IDENTIFICATION
11-
* $PostgreSQL: pgsql/src/backend/nodes/print.c,v 1.87 2008/01/01 19:45:50 momjian Exp $
11+
* $PostgreSQL: pgsql/src/backend/nodes/print.c,v 1.88 2008/06/06 22:35:22 alvherre Exp $
1212
*
1313
* HISTORY
1414
* AUTHOR DATE MAJOR EVENT
@@ -20,6 +20,7 @@
2020
#include "postgres.h"
2121

2222
#include "access/printtup.h"
23+
#include "lib/stringinfo.h"
2324
#include "nodes/print.h"
2425
#include "optimizer/clauses.h"
2526
#include "parser/parsetree.h"

src/backend/postmaster/postmaster.c

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -37,7 +37,7 @@
3737
*
3838
*
3939
* IDENTIFICATION
40-
* $PostgreSQL: pgsql/src/backend/postmaster/postmaster.c,v 1.557 2008/05/04 21:13:35 tgl Exp $
40+
* $PostgreSQL: pgsql/src/backend/postmaster/postmaster.c,v 1.558 2008/06/06 22:35:22 alvherre Exp $
4141
*
4242
* NOTES
4343
*
@@ -93,6 +93,7 @@
9393
#endif
9494

9595
#include "access/transam.h"
96+
#include "access/xlog.h"
9697
#include "bootstrap/bootstrap.h"
9798
#include "catalog/pg_control.h"
9899
#include "lib/dllist.h"

src/backend/utils/adt/domains.c

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -25,14 +25,15 @@
2525
*
2626
*
2727
* IDENTIFICATION
28-
* $PostgreSQL: pgsql/src/backend/utils/adt/domains.c,v 1.6 2008/01/01 19:45:52 momjian Exp $
28+
* $PostgreSQL: pgsql/src/backend/utils/adt/domains.c,v 1.7 2008/06/06 22:35:22 alvherre Exp $
2929
*
3030
*-------------------------------------------------------------------------
3131
*/
3232
#include "postgres.h"
3333

3434
#include "commands/typecmds.h"
3535
#include "executor/executor.h"
36+
#include "lib/stringinfo.h"
3637
#include "utils/builtins.h"
3738
#include "utils/lsyscache.h"
3839

src/backend/utils/fmgr/fmgr.c

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -8,7 +8,7 @@
88
*
99
*
1010
* IDENTIFICATION
11-
* $PostgreSQL: pgsql/src/backend/utils/fmgr/fmgr.c,v 1.119 2008/05/15 00:17:40 tgl Exp $
11+
* $PostgreSQL: pgsql/src/backend/utils/fmgr/fmgr.c,v 1.120 2008/06/06 22:35:22 alvherre Exp $
1212
*
1313
*-------------------------------------------------------------------------
1414
*/
@@ -19,6 +19,7 @@
1919
#include "catalog/pg_language.h"
2020
#include "catalog/pg_proc.h"
2121
#include "executor/functions.h"
22+
#include "lib/stringinfo.h"
2223
#include "miscadmin.h"
2324
#include "parser/parse_expr.h"
2425
#include "pgstat.h"

src/include/access/gin.h

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -4,7 +4,7 @@
44
*
55
* Copyright (c) 2006-2008, PostgreSQL Global Development Group
66
*
7-
* $PostgreSQL: pgsql/src/include/access/gin.h,v 1.20 2008/05/16 16:31:01 tgl Exp $
7+
* $PostgreSQL: pgsql/src/include/access/gin.h,v 1.21 2008/06/06 22:35:22 alvherre Exp $
88
*--------------------------------------------------------------------------
99
*/
1010

@@ -14,6 +14,7 @@
1414

1515
#include "access/itup.h"
1616
#include "access/relscan.h"
17+
#include "access/xlog.h"
1718
#include "fmgr.h"
1819
#include "nodes/tidbitmap.h"
1920
#include "storage/block.h"

src/include/access/heapam.h

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -7,7 +7,7 @@
77
* Portions Copyright (c) 1996-2008, PostgreSQL Global Development Group
88
* Portions Copyright (c) 1994, Regents of the University of California
99
*
10-
* $PostgreSQL: pgsql/src/include/access/heapam.h,v 1.134 2008/05/12 00:00:53 alvherre Exp $
10+
* $PostgreSQL: pgsql/src/include/access/heapam.h,v 1.135 2008/06/06 22:35:22 alvherre Exp $
1111
*
1212
*-------------------------------------------------------------------------
1313
*/
@@ -17,6 +17,7 @@
1717
#include "access/htup.h"
1818
#include "access/relscan.h"
1919
#include "access/sdir.h"
20+
#include "access/xlog.h"
2021
#include "nodes/primnodes.h"
2122
#include "storage/lock.h"
2223
#include "utils/snapshot.h"

src/include/access/nbtree.h

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -7,7 +7,7 @@
77
* Portions Copyright (c) 1996-2008, PostgreSQL Global Development Group
88
* Portions Copyright (c) 1994, Regents of the University of California
99
*
10-
* $PostgreSQL: pgsql/src/include/access/nbtree.h,v 1.118 2008/04/16 23:59:40 tgl Exp $
10+
* $PostgreSQL: pgsql/src/include/access/nbtree.h,v 1.119 2008/06/06 22:35:22 alvherre Exp $
1111
*
1212
*-------------------------------------------------------------------------
1313
*/
@@ -17,6 +17,7 @@
1717
#include "access/itup.h"
1818
#include "access/relscan.h"
1919
#include "access/sdir.h"
20+
#include "access/xlog.h"
2021
#include "access/xlogutils.h"
2122

2223

src/include/storage/bufpage.h

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -7,14 +7,14 @@
77
* Portions Copyright (c) 1996-2008, PostgreSQL Global Development Group
88
* Portions Copyright (c) 1994, Regents of the University of California
99
*
10-
* $PostgreSQL: pgsql/src/include/storage/bufpage.h,v 1.79 2008/05/12 16:06:10 alvherre Exp $
10+
* $PostgreSQL: pgsql/src/include/storage/bufpage.h,v 1.80 2008/06/06 22:35:22 alvherre Exp $
1111
*
1212
*-------------------------------------------------------------------------
1313
*/
1414
#ifndef BUFPAGE_H
1515
#define BUFPAGE_H
1616

17-
#include "access/xlog.h"
17+
#include "access/xlogdefs.h"
1818
#include "storage/bufmgr.h"
1919
#include "storage/item.h"
2020
#include "storage/off.h"

0 commit comments

Comments
 (0)
pFad - Phonifier reborn

Pfad - The Proxy pFad of © 2024 Garber Painting. All rights reserved.

Note: This service is not intended for secure transactions such as banking, social media, email, or purchasing. Use at your own risk. We assume no liability whatsoever for broken pages.


Alternative Proxies:

Alternative Proxy

pFad Proxy

pFad v3 Proxy

pFad v4 Proxy