diff options
Diffstat (limited to 'src/backend/executor/execProcnode.c')
-rw-r--r-- | src/backend/executor/execProcnode.c | 14 |
1 files changed, 14 insertions, 0 deletions
diff --git a/src/backend/executor/execProcnode.c b/src/backend/executor/execProcnode.c index 64cb701e416..edd175e1299 100644 --- a/src/backend/executor/execProcnode.c +++ b/src/backend/executor/execProcnode.c @@ -93,6 +93,7 @@ #include "executor/nodeLimit.h" #include "executor/nodeLockRows.h" #include "executor/nodeMaterial.h" +#include "executor/nodeMergeAppend.h" #include "executor/nodeMergejoin.h" #include "executor/nodeModifyTable.h" #include "executor/nodeNestloop.h" @@ -158,6 +159,11 @@ ExecInitNode(Plan *node, EState *estate, int eflags) estate, eflags); break; + case T_MergeAppend: + result = (PlanState *) ExecInitMergeAppend((MergeAppend *) node, + estate, eflags); + break; + case T_RecursiveUnion: result = (PlanState *) ExecInitRecursiveUnion((RecursiveUnion *) node, estate, eflags); @@ -363,6 +369,10 @@ ExecProcNode(PlanState *node) result = ExecAppend((AppendState *) node); break; + case T_MergeAppendState: + result = ExecMergeAppend((MergeAppendState *) node); + break; + case T_RecursiveUnionState: result = ExecRecursiveUnion((RecursiveUnionState *) node); break; @@ -581,6 +591,10 @@ ExecEndNode(PlanState *node) ExecEndAppend((AppendState *) node); break; + case T_MergeAppendState: + ExecEndMergeAppend((MergeAppendState *) node); + break; + case T_RecursiveUnionState: ExecEndRecursiveUnion((RecursiveUnionState *) node); break; |