From b93f5a5673b4bb09e14eb80fe28aa21fc20a6271 Mon Sep 17 00:00:00 2001 From: Alvaro Herrera Date: Wed, 23 Feb 2011 14:18:09 -0300 Subject: Move Trigger and TriggerDesc structs out of rel.h into a new reltrigger.h This lets us stop including rel.h into execnodes.h, which is a widely used header. --- src/backend/access/gist/gist.c | 1 + 1 file changed, 1 insertion(+) (limited to 'src/backend/access/gist/gist.c') diff --git a/src/backend/access/gist/gist.c b/src/backend/access/gist/gist.c index cdb0343d10..b756f6e0e3 100644 --- a/src/backend/access/gist/gist.c +++ b/src/backend/access/gist/gist.c @@ -22,6 +22,7 @@ #include "storage/bufmgr.h" #include "storage/indexfsm.h" #include "utils/memutils.h" +#include "utils/rel.h" /* Working state for gistbuild and its callback */ typedef struct -- cgit v1.2.1