Fix sloppy omission of now-required #include's.
authorTom Lane
Tue, 11 Nov 2008 14:17:02 +0000 (14:17 +0000)
committerTom Lane
Tue, 11 Nov 2008 14:17:02 +0000 (14:17 +0000)
src/backend/access/transam/xact.c
src/backend/storage/buffer/localbuf.c

index 4306855b9438545e7d085bf8f88dbc716d80ca5a..3d51e35768dc81aff10cc9902340bc03c25bbec4 100644 (file)
@@ -10,7 +10,7 @@
  *
  *
  * IDENTIFICATION
- *   $PostgreSQL: pgsql/src/backend/access/transam/xact.c,v 1.267 2008/11/11 13:19:15 heikki Exp $
+ *   $PostgreSQL: pgsql/src/backend/access/transam/xact.c,v 1.268 2008/11/11 14:17:01 tgl Exp $
  *
  *-------------------------------------------------------------------------
  */
@@ -26,6 +26,7 @@
 #include "access/twophase.h"
 #include "access/xact.h"
 #include "access/xlogutils.h"
+#include "catalog/catalog.h"
 #include "catalog/namespace.h"
 #include "commands/async.h"
 #include "commands/tablecmds.h"
index 3ae5b526fd964e5a8d3227ac25b36778f89ae4c4..0bc71554634d4576f996e7bbd87888c357560be4 100644 (file)
@@ -9,12 +9,13 @@
  *
  *
  * IDENTIFICATION
- *   $PostgreSQL: pgsql/src/backend/storage/buffer/localbuf.c,v 1.82 2008/11/11 13:19:16 heikki Exp $
+ *   $PostgreSQL: pgsql/src/backend/storage/buffer/localbuf.c,v 1.83 2008/11/11 14:17:02 tgl Exp $
  *
  *-------------------------------------------------------------------------
  */
 #include "postgres.h"
 
+#include "catalog/catalog.h"
 #include "storage/buf_internals.h"
 #include "storage/bufmgr.h"
 #include "storage/smgr.h"