From 5c86f24ea52d2afd5c79caa5a100af24751ebeef Mon Sep 17 00:00:00 2001 From: Tom Lane Date: Tue, 11 Nov 2008 14:17:02 +0000 Subject: [PATCH] Fix sloppy omission of now-required #include's. --- src/backend/access/transam/xact.c | 1 + src/backend/storage/buffer/localbuf.c | 1 + 2 files changed, 2 insertions(+) diff --git a/src/backend/access/transam/xact.c b/src/backend/access/transam/xact.c index 73238a5f00..b7d1285402 100644 --- a/src/backend/access/transam/xact.c +++ b/src/backend/access/transam/xact.c @@ -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" diff --git a/src/backend/storage/buffer/localbuf.c b/src/backend/storage/buffer/localbuf.c index 903b2f17a1..b955006ee5 100644 --- a/src/backend/storage/buffer/localbuf.c +++ b/src/backend/storage/buffer/localbuf.c @@ -15,6 +15,7 @@ */ #include "postgres.h" +#include "catalog/catalog.h" #include "storage/buf_internals.h" #include "storage/bufmgr.h" #include "storage/smgr.h" -- 2.39.5