multi set 支持多set

This commit is contained in:
suncan
2022-09-08 16:26:58 +08:00
parent fa7a5f026f
commit 4bd9f4345f
22 changed files with 818 additions and 436 deletions

View File

@ -3253,17 +3253,6 @@ static TupleTableSlot* ExecReplace(EState* estate, ModifyTableState* node, Tuple
}
static TupleTableSlot* FetchPlanSlot(ModifyTableState* node, PlanState* subPlanState)
{
EState* estate = node->ps.state;
if (estate->result_rel_index > 0) {
return ExecProject(node->mt_ProjInfos[estate->result_rel_index], NULL);
} else {
return ExecProcNode(subPlanState);
}
}
/* ----------------------------------------------------------------
* ExecModifyTable
*