diff options
author | Tom Lane <tgl@sss.pgh.pa.us> | 2019-02-11 22:37:16 -0500 |
---|---|---|
committer | Tom Lane <tgl@sss.pgh.pa.us> | 2019-02-11 22:37:24 -0500 |
commit | b07c695d9c34cccfa0138ca7f4c76547a24c74e1 (patch) | |
tree | 75aa5ce8b2815b07e23608c80dc3a4d87e1417df /src | |
parent | ea05b221c2ff9d180f632ae90c806e984f15ed0d (diff) | |
download | postgresql-b07c695d9c34cccfa0138ca7f4c76547a24c74e1.tar.gz postgresql-b07c695d9c34cccfa0138ca7f4c76547a24c74e1.zip |
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.
Diffstat (limited to 'src')
-rw-r--r-- | src/include/partitioning/partprune.h | 2 |
1 files changed, 2 insertions, 0 deletions
diff --git a/src/include/partitioning/partprune.h b/src/include/partitioning/partprune.h index 397ffaab369..2f75717ffbb 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; |