From 8da9a226369e9ceec7cef1ab7a16cdc0adb4d657 Mon Sep 17 00:00:00 2001 From: Robert Haas Date: Tue, 14 Feb 2017 15:37:59 -0500 Subject: Split index xlog headers from other private index headers. The xlog-specific headers need to be included in both frontend code - specifically, pg_waldump - and the backend, but the remainder of the private headers for each index are only needed by the backend. By splitting the xlog stuff out into separate headers, pg_waldump pulls in fewer backend headers, which is a good thing. Patch by me, reviewed by Michael Paquier and Andres Freund, per a complaint from Dilip Kumar. Discussion: http://postgr.es/m/CA+TgmoZ=F=GkxV0YEv-A8tb+AEGy_Qa7GSiJ8deBKFATnzfEug@mail.gmail.com --- src/backend/access/gist/gistxlog.c | 1 + 1 file changed, 1 insertion(+) (limited to 'src/backend/access/gist/gistxlog.c') diff --git a/src/backend/access/gist/gistxlog.c b/src/backend/access/gist/gistxlog.c index cbda9e705cc..4f4fe8fab53 100644 --- a/src/backend/access/gist/gistxlog.c +++ b/src/backend/access/gist/gistxlog.c @@ -15,6 +15,7 @@ #include "access/bufmask.h" #include "access/gist_private.h" +#include "access/gistxlog.h" #include "access/xloginsert.h" #include "access/xlogutils.h" #include "utils/memutils.h" -- cgit v1.2.3