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

index 73238a5f0084937c701fa3a6ec81ac3f75a564c9..b7d1285402cc609002be8c1f96a4051c9866c89e 100644 (file)
@@ -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 903b2f17a1fbc1a8f5bf16fb78713f5b611f6d8c..b955006ee5fa55be74eb6d6aa3d97af8e51d4905 100644 (file)
@@ -15,6 +15,7 @@
  */
 #include "postgres.h"
 
+#include "catalog/catalog.h"
 #include "storage/buf_internals.h"
 #include "storage/bufmgr.h"
 #include "storage/smgr.h"