2
0

nodeModifyTable.h 1.1 KB

123456789101112131415161718192021222324252627282930313233
  1. /*-------------------------------------------------------------------------
  2. *
  3. * nodeModifyTable.h
  4. *
  5. *
  6. * Portions Copyright (c) 1996-2022, PostgreSQL Global Development Group
  7. * Portions Copyright (c) 1994, Regents of the University of California
  8. *
  9. * src/include/executor/nodeModifyTable.h
  10. *
  11. *-------------------------------------------------------------------------
  12. */
  13. #ifndef NODEMODIFYTABLE_H
  14. #define NODEMODIFYTABLE_H
  15. #include "nodes/execnodes.h"
  16. extern void ExecInitStoredGenerated(ResultRelInfo *resultRelInfo,
  17. EState *estate,
  18. CmdType cmdtype);
  19. extern void ExecComputeStoredGenerated(ResultRelInfo *resultRelInfo,
  20. EState *estate, TupleTableSlot *slot,
  21. CmdType cmdtype);
  22. extern ModifyTableState *ExecInitModifyTable(ModifyTable *node, EState *estate, int eflags);
  23. extern void ExecEndModifyTable(ModifyTableState *node);
  24. extern void ExecReScanModifyTable(ModifyTableState *node);
  25. extern void ExecInitMergeTupleSlots(ModifyTableState *mtstate,
  26. ResultRelInfo *resultRelInfo);
  27. #endif /* NODEMODIFYTABLE_H */