00001 /*------------------------------------------------------------------------- 00002 * 00003 * nodeTidscan.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/nodeTidscan.h 00011 * 00012 *------------------------------------------------------------------------- 00013 */ 00014 #ifndef NODETIDSCAN_H 00015 #define NODETIDSCAN_H 00016 00017 #include "nodes/execnodes.h" 00018 00019 extern TidScanState *ExecInitTidScan(TidScan *node, EState *estate, int eflags); 00020 extern TupleTableSlot *ExecTidScan(TidScanState *node); 00021 extern void ExecEndTidScan(TidScanState *node); 00022 extern void ExecTidMarkPos(TidScanState *node); 00023 extern void ExecTidRestrPos(TidScanState *node); 00024 extern void ExecReScanTidScan(TidScanState *node); 00025 00026 #endif /* NODETIDSCAN_H */