summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorPeter Eisentraut2017-12-26 15:21:27 +0000
committerPeter Eisentraut2017-12-26 15:21:27 +0000
commit0689dc3a235a12c58910fba325f0150979d0c81f (patch)
treefeca32c13aa42733ea92328d0f1116f65d94ed54
parentff963b393ca93a71d2f398c4c584b322cd351c2c (diff)
Add includes to make header files self-contained
-rw-r--r--src/include/executor/nodeHashjoin.h1
-rw-r--r--src/include/utils/sharedtuplestore.h1
2 files changed, 2 insertions, 0 deletions
diff --git a/src/include/executor/nodeHashjoin.h b/src/include/executor/nodeHashjoin.h
index 8469085d7e..b46bcc1f68 100644
--- a/src/include/executor/nodeHashjoin.h
+++ b/src/include/executor/nodeHashjoin.h
@@ -14,6 +14,7 @@
#ifndef NODEHASHJOIN_H
#define NODEHASHJOIN_H
+#include "access/parallel.h"
#include "nodes/execnodes.h"
#include "storage/buffile.h"
diff --git a/src/include/utils/sharedtuplestore.h b/src/include/utils/sharedtuplestore.h
index 49490ec414..13642f6bfd 100644
--- a/src/include/utils/sharedtuplestore.h
+++ b/src/include/utils/sharedtuplestore.h
@@ -13,6 +13,7 @@
#ifndef SHAREDTUPLESTORE_H
#define SHAREDTUPLESTORE_H
+#include "access/htup.h"
#include "storage/fd.h"
#include "storage/sharedfileset.h"