00001 /*------------------------------------------------------------------------- 00002 * 00003 * nodeWorktablescan.h 00004 * 00005 * 00006 * 00007 * Portions Copyright (c) 1996-2013, PostgreSQL Global Development Group 00008 * Portions Copyright (c) 1994, Regents of the University of California 00009 * 00010 * src/include/executor/nodeWorktablescan.h 00011 * 00012 *------------------------------------------------------------------------- 00013 */ 00014 #ifndef NODEWORKTABLESCAN_H 00015 #define NODEWORKTABLESCAN_H 00016 00017 #include "nodes/execnodes.h" 00018 00019 extern WorkTableScanState *ExecInitWorkTableScan(WorkTableScan *node, EState *estate, int eflags); 00020 extern TupleTableSlot *ExecWorkTableScan(WorkTableScanState *node); 00021 extern void ExecEndWorkTableScan(WorkTableScanState *node); 00022 extern void ExecReScanWorkTableScan(WorkTableScanState *node); 00023 00024 #endif /* NODEWORKTABLESCAN_H */