diff options
author | Bruce Momjian <bruce@momjian.us> | 1999-11-24 16:52:50 +0000 |
---|---|---|
committer | Bruce Momjian <bruce@momjian.us> | 1999-11-24 16:52:50 +0000 |
commit | 74f418eb9aeecbb34d004aae44e96df037f2dc25 (patch) | |
tree | 54a73119e8b6de840ff005b96ca4b991355952cb /src/include/executor | |
parent | 61a93ed2da5adbacc57cc3b4b00805a7e3c868df (diff) | |
download | postgresql-74f418eb9aeecbb34d004aae44e96df037f2dc25.tar.gz postgresql-74f418eb9aeecbb34d004aae44e96df037f2dc25.zip |
Add pg_statistic index, add missing Hiroshi file.
Diffstat (limited to 'src/include/executor')
-rw-r--r-- | src/include/executor/nodeTidscan.h | 27 |
1 files changed, 27 insertions, 0 deletions
diff --git a/src/include/executor/nodeTidscan.h b/src/include/executor/nodeTidscan.h new file mode 100644 index 00000000000..a54c553e0d6 --- /dev/null +++ b/src/include/executor/nodeTidscan.h @@ -0,0 +1,27 @@ +/*------------------------------------------------------------------------- + * + * nodeTidscan.h + * + * + * + * Copyright (c) 1994, Regents of the University of California + * + * $Id: nodeTidscan.h,v 1.1 1999/11/24 16:52: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 void ExecTidRestrPos(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 */ |