aboutsummaryrefslogtreecommitdiff
path: root/src/include/executor/nodeResultCache.h
diff options
context:
space:
mode:
authorTom Lane <tgl@sss.pgh.pa.us>2021-04-06 11:23:48 -0400
committerTom Lane <tgl@sss.pgh.pa.us>2021-04-06 11:23:56 -0400
commit789d81de8a50d9a23cc1a3b8ea5d839246020689 (patch)
treec959c7a675302bcea73b61d8b38248ecc8bf22e3 /src/include/executor/nodeResultCache.h
parent3a5130672296ed4e682403a77a9a3ad3d21cef75 (diff)
downloadpostgresql-789d81de8a50d9a23cc1a3b8ea5d839246020689.tar.gz
postgresql-789d81de8a50d9a23cc1a3b8ea5d839246020689.zip
Fix missing #include in nodeResultCache.h.
Per cpluspluscheck.
Diffstat (limited to 'src/include/executor/nodeResultCache.h')
-rw-r--r--src/include/executor/nodeResultCache.h1
1 files changed, 1 insertions, 0 deletions
diff --git a/src/include/executor/nodeResultCache.h b/src/include/executor/nodeResultCache.h
index df671d16f96..e7a3e7ab9cd 100644
--- a/src/include/executor/nodeResultCache.h
+++ b/src/include/executor/nodeResultCache.h
@@ -14,6 +14,7 @@
#ifndef NODERESULTCACHE_H
#define NODERESULTCACHE_H
+#include "access/parallel.h"
#include "nodes/execnodes.h"
extern ResultCacheState *ExecInitResultCache(ResultCache *node, EState *estate, int eflags);