From a25e7c476416b30c335ae70d26122696c668159a Mon Sep 17 00:00:00 2001 From: Andres Freund Date: Tue, 17 Mar 2026 11:01:01 -0400 Subject: [PATCH v2 3/9] wip: Don't include relcache.h in bufmgr.h --- src/include/storage/bufmgr.h | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/include/storage/bufmgr.h b/src/include/storage/bufmgr.h index c4b48c2aa4c..109182f9af9 100644 --- a/src/include/storage/bufmgr.h +++ b/src/include/storage/bufmgr.h @@ -20,9 +20,9 @@ #include "storage/buf.h" #include "storage/bufpage.h" #include "storage/relfilelocator.h" -#include "utils/relcache.h" typedef void *Block; +typedef struct RelationData *Relation; /* * Possible arguments for GetAccessStrategy(). -- 2.53.0.1.gb2826b52eb