diff options
Diffstat (limited to 'src/include/executor/nodeTidscan.h')
-rw-r--r-- | src/include/executor/nodeTidscan.h | 27 |
1 files changed, 0 insertions, 27 deletions
diff --git a/src/include/executor/nodeTidscan.h b/src/include/executor/nodeTidscan.h deleted file mode 100644 index b164100690f..00000000000 --- a/src/include/executor/nodeTidscan.h +++ /dev/null @@ -1,27 +0,0 @@ -/*------------------------------------------------------------------------- - * - * nodeTidscan.h - * - * - * - * Portions Copyright (c) 1996-2002, PostgreSQL Global Development Group - * Portions Copyright (c) 1994, Regents of the University of California - * - * $Id: nodeTidscan.h,v 1.9 2002/06/20 20:29:49 momjian Exp $ - * - *------------------------------------------------------------------------- - */ -#ifndef NODETIDSCAN_H -#define NODETIDSCAN_H - -#include "nodes/plannodes.h" - -extern TupleTableSlot *ExecTidScan(TidScan *node); -extern void ExecTidReScan(TidScan *node, ExprContext *exprCtxt, Plan *parent); -extern void ExecEndTidScan(TidScan *node); -extern void ExecTidMarkPos(TidScan *node); -extern bool ExecInitTidScan(TidScan *node, EState *estate, Plan *parent); -extern int ExecCountSlotsTidScan(TidScan *node); -extern void ExecTidReScan(TidScan *node, ExprContext *exprCtxt, Plan *parent); - -#endif /* NODETIDSCAN_H */ |