~ubuntu-branches/ubuntu/lucid/postgresql-8.4/lucid-proposed

« back to all changes in this revision

Viewing changes to src/include/executor/nodeTidscan.h

  • Committer: Bazaar Package Importer
  • Author(s): Martin Pitt
  • Date: 2009-03-20 12:00:13 UTC
  • Revision ID: james.westby@ubuntu.com-20090320120013-hogj7egc5mjncc5g
Tags: upstream-8.4~0cvs20090328
ImportĀ upstreamĀ versionĀ 8.4~0cvs20090328

Show diffs side-by-side

added added

removed removed

Lines of Context:
 
1
/*-------------------------------------------------------------------------
 
2
 *
 
3
 * nodeTidscan.h
 
4
 *
 
5
 *
 
6
 *
 
7
 * Portions Copyright (c) 1996-2009, PostgreSQL Global Development Group
 
8
 * Portions Copyright (c) 1994, Regents of the University of California
 
9
 *
 
10
 * $PostgreSQL$
 
11
 *
 
12
 *-------------------------------------------------------------------------
 
13
 */
 
14
#ifndef NODETIDSCAN_H
 
15
#define NODETIDSCAN_H
 
16
 
 
17
#include "nodes/execnodes.h"
 
18
 
 
19
extern int      ExecCountSlotsTidScan(TidScan *node);
 
20
extern TidScanState *ExecInitTidScan(TidScan *node, EState *estate, int eflags);
 
21
extern TupleTableSlot *ExecTidScan(TidScanState *node);
 
22
extern void ExecEndTidScan(TidScanState *node);
 
23
extern void ExecTidMarkPos(TidScanState *node);
 
24
extern void ExecTidRestrPos(TidScanState *node);
 
25
extern void ExecTidReScan(TidScanState *node, ExprContext *exprCtxt);
 
26
 
 
27
#endif   /* NODETIDSCAN_H */