Header And Logo

PostgreSQL
| The world's most advanced open source database.

nodeModifyTable.h

Go to the documentation of this file.
00001 /*-------------------------------------------------------------------------
00002  *
00003  * nodeModifyTable.h
00004  *
00005  *
00006  * Portions Copyright (c) 1996-2013, PostgreSQL Global Development Group
00007  * Portions Copyright (c) 1994, Regents of the University of California
00008  *
00009  * src/include/executor/nodeModifyTable.h
00010  *
00011  *-------------------------------------------------------------------------
00012  */
00013 #ifndef NODEMODIFYTABLE_H
00014 #define NODEMODIFYTABLE_H
00015 
00016 #include "nodes/execnodes.h"
00017 
00018 extern ModifyTableState *ExecInitModifyTable(ModifyTable *node, EState *estate, int eflags);
00019 extern TupleTableSlot *ExecModifyTable(ModifyTableState *node);
00020 extern void ExecEndModifyTable(ModifyTableState *node);
00021 extern void ExecReScanModifyTable(ModifyTableState *node);
00022 
00023 #endif   /* NODEMODIFYTABLE_H */