diff options
Diffstat (limited to 'src/include/executor')
-rw-r--r-- | src/include/executor/nodeMerge.h | 22 |
1 files changed, 22 insertions, 0 deletions
diff --git a/src/include/executor/nodeMerge.h b/src/include/executor/nodeMerge.h new file mode 100644 index 00000000000..c222e9ee655 --- /dev/null +++ b/src/include/executor/nodeMerge.h @@ -0,0 +1,22 @@ +/*------------------------------------------------------------------------- + * + * nodeMerge.h + * + * + * Portions Copyright (c) 1996-2018, PostgreSQL Global Development Group + * Portions Copyright (c) 1994, Regents of the University of California + * + * src/include/executor/nodeMerge.h + * + *------------------------------------------------------------------------- + */ +#ifndef NODEMERGE_H +#define NODEMERGE_H + +#include "nodes/execnodes.h" + +extern void +ExecMerge(ModifyTableState *mtstate, EState *estate, TupleTableSlot *slot, + JunkFilter *junkfilter, ResultRelInfo *resultRelInfo); + +#endif /* NODEMERGE_H */ |