diff options
author | Simon Riggs <simon@2ndQuadrant.com> | 2018-04-05 09:54:07 +0100 |
---|---|---|
committer | Simon Riggs <simon@2ndQuadrant.com> | 2018-04-05 09:54:07 +0100 |
commit | 4b2d44031f8c005f6f86364d7663858b6b5bdd14 (patch) | |
tree | 821dec0027fe8caa8ce50250e20a1e594d738e7e /src/include/executor/nodeModifyTable.h | |
parent | 1fd8690668635bab9dfa16b2885e6e474f8451ba (diff) | |
download | postgresql-4b2d44031f8c005f6f86364d7663858b6b5bdd14.tar.gz postgresql-4b2d44031f8c005f6f86364d7663858b6b5bdd14.zip |
MERGE post-commit review
Review comments from Andres Freund
* Consolidate code into AfterTriggerGetTransitionTable()
* Rename nodeMerge.c to execMerge.c
* Rename nodeMerge.h to execMerge.h
* Move MERGE handling in ExecInitModifyTable()
into a execMerge.c ExecInitMerge()
* Move mt_merge_subcommands flags into execMerge.h
* Rename opt_and_condition to opt_merge_when_and_condition
* Wordsmith various comments
Author: Pavan Deolasee
Reviewer: Simon Riggs
Diffstat (limited to 'src/include/executor/nodeModifyTable.h')
-rw-r--r-- | src/include/executor/nodeModifyTable.h | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/src/include/executor/nodeModifyTable.h b/src/include/executor/nodeModifyTable.h index 686cfa61710..94fd60c38cf 100644 --- a/src/include/executor/nodeModifyTable.h +++ b/src/include/executor/nodeModifyTable.h @@ -39,5 +39,6 @@ extern TupleTableSlot *ExecInsert(ModifyTableState *mtstate, EState *estate, MergeActionState *actionState, bool canSetTag); +extern void ExecCheckPlanOutput(Relation resultRel, List *targetList); #endif /* NODEMODIFYTABLE_H */ |