Skip to content

Commit cad3a26

Browse files
committed
Fix sloppy omission of now-required #include's.
1 parent 7e8b0b9 commit cad3a26

File tree

2 files changed

+4
-2
lines changed

2 files changed

+4
-2
lines changed

src/backend/access/transam/xact.c

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -10,7 +10,7 @@
1010
*
1111
*
1212
* IDENTIFICATION
13-
* $PostgreSQL: pgsql/src/backend/access/transam/xact.c,v 1.267 2008/11/11 13:19:15 heikki Exp $
13+
* $PostgreSQL: pgsql/src/backend/access/transam/xact.c,v 1.268 2008/11/11 14:17:01 tgl Exp $
1414
*
1515
*-------------------------------------------------------------------------
1616
*/
@@ -26,6 +26,7 @@
2626
#include "access/twophase.h"
2727
#include "access/xact.h"
2828
#include "access/xlogutils.h"
29+
#include "catalog/catalog.h"
2930
#include "catalog/namespace.h"
3031
#include "commands/async.h"
3132
#include "commands/tablecmds.h"

src/backend/storage/buffer/localbuf.c

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -9,12 +9,13 @@
99
*
1010
*
1111
* IDENTIFICATION
12-
* $PostgreSQL: pgsql/src/backend/storage/buffer/localbuf.c,v 1.82 2008/11/11 13:19:16 heikki Exp $
12+
* $PostgreSQL: pgsql/src/backend/storage/buffer/localbuf.c,v 1.83 2008/11/11 14:17:02 tgl Exp $
1313
*
1414
*-------------------------------------------------------------------------
1515
*/
1616
#include "postgres.h"
1717

18+
#include "catalog/catalog.h"
1819
#include "storage/buf_internals.h"
1920
#include "storage/bufmgr.h"
2021
#include "storage/smgr.h"

0 commit comments

Comments
 (0)