diff options
Diffstat (limited to 'src/backend/executor/nodeGather.c')
-rw-r--r-- | src/backend/executor/nodeGather.c | 9 |
1 files changed, 2 insertions, 7 deletions
diff --git a/src/backend/executor/nodeGather.c b/src/backend/executor/nodeGather.c index 7b6ced98061..5d4ffe989cb 100644 --- a/src/backend/executor/nodeGather.c +++ b/src/backend/executor/nodeGather.c @@ -30,18 +30,13 @@ #include "postgres.h" -#include "access/relscan.h" -#include "access/xact.h" -#include "executor/execdebug.h" #include "executor/execParallel.h" +#include "executor/executor.h" #include "executor/nodeGather.h" -#include "executor/nodeSubplan.h" #include "executor/tqueue.h" #include "miscadmin.h" #include "optimizer/optimizer.h" -#include "pgstat.h" -#include "utils/memutils.h" -#include "utils/rel.h" +#include "utils/wait_event.h" static TupleTableSlot *ExecGather(PlanState *pstate); |