Fix missing #include in nodeResultCache.h.

Per cpluspluscheck.
This commit is contained in:
Tom Lane 2021-04-06 11:23:48 -04:00
parent 3a51306722
commit 789d81de8a
2 changed files with 1 additions and 1 deletions

View File

@ -66,7 +66,6 @@
#include "postgres.h"
#include "access/parallel.h"
#include "common/hashfn.h"
#include "executor/executor.h"
#include "executor/nodeResultCache.h"

View 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);