From: Tom Lane Date: Tue, 12 Feb 2019 03:37:16 +0000 (-0500) Subject: Fix header inclusion issue. X-Git-Tag: REL_12_BETA1~762 X-Git-Url: https://granicus.if.org/sourcecode?a=commitdiff_plain;h=b07c695d9c34cccfa0138ca7f4c76547a24c74e1;p=postgresql Fix header inclusion issue. partprune.h failed to compile by itself; needs to include partdefs.h. I think I must've broken this in fa2cf164a, though I'd swear I ran the appropriate tests when removing #includes. Anyway, it's very sensible for this file to include partdefs.h, so let's just do that. Per cpluspluscheck. --- diff --git a/src/include/partitioning/partprune.h b/src/include/partitioning/partprune.h index 397ffaab36..2f75717ffb 100644 --- a/src/include/partitioning/partprune.h +++ b/src/include/partitioning/partprune.h @@ -15,6 +15,8 @@ #define PARTPRUNE_H #include "nodes/execnodes.h" +#include "partitioning/partdefs.h" + struct PlannerInfo; /* avoid including pathnodes.h here */ struct RelOptInfo;