Fix missing #include in nodeResultCache.h.
authorTom Lane <tgl@sss.pgh.pa.us>
Tue, 6 Apr 2021 15:23:48 +0000 (11:23 -0400)
committerTom Lane <tgl@sss.pgh.pa.us>
Tue, 6 Apr 2021 15:23:56 +0000 (11:23 -0400)
Per cpluspluscheck.

src/backend/executor/nodeResultCache.c
src/include/executor/nodeResultCache.h

index 99a2045681b059563ca01e8b3497ff728b173a75..534d733eb345a9b9dcf5f7eb8c1f95aedb7c1320 100644 (file)
@@ -66,7 +66,6 @@
 
 #include "postgres.h"
 
-#include "access/parallel.h"
 #include "common/hashfn.h"
 #include "executor/executor.h"
 #include "executor/nodeResultCache.h"
index df671d16f96762d015bc7a548ef2de532a4a551a..e7a3e7ab9cdbf9d97bb59c05d5b6c01ad4138f93 100644 (file)
@@ -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);