Skip to content

Commit b07c695

Browse files
committed
Fix header inclusion issue.
partprune.h failed to compile by itself; needs to include partdefs.h. I think I must've broken this in fa2cf16, 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.
1 parent ea05b22 commit b07c695

File tree

1 file changed

+2
-0
lines changed

1 file changed

+2
-0
lines changed

src/include/partitioning/partprune.h

+2
Original file line numberDiff line numberDiff line change
@@ -15,6 +15,8 @@
1515
#define PARTPRUNE_H
1616

1717
#include "nodes/execnodes.h"
18+
#include "partitioning/partdefs.h"
19+
1820
struct PlannerInfo; /* avoid including pathnodes.h here */
1921
struct RelOptInfo;
2022

0 commit comments

Comments
 (0)