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/spgist/spgxlog.c | 1 + 1 file changed, 1 insertion(+) (limited to 'src/backend/access/spgist/spgxlog.c') diff --git a/src/backend/access/spgist/spgxlog.c b/src/backend/access/spgist/spgxlog.c index 596b266ba64..c007601efde 100644 --- a/src/backend/access/spgist/spgxlog.c +++ b/src/backend/access/spgist/spgxlog.c @@ -16,6 +16,7 @@ #include "access/bufmask.h" #include "access/spgist_private.h" +#include "access/spgxlog.h" #include "access/transam.h" #include "access/xlog.h" #include "access/xlogutils.h" -- cgit v1.2.3