diff options
Diffstat (limited to 'src/include/executor/nodeLockRows.h')
-rw-r--r-- | src/include/executor/nodeLockRows.h | 24 |
1 files changed, 24 insertions, 0 deletions
diff --git a/src/include/executor/nodeLockRows.h b/src/include/executor/nodeLockRows.h new file mode 100644 index 00000000000..1ad10b63a5f --- /dev/null +++ b/src/include/executor/nodeLockRows.h @@ -0,0 +1,24 @@ +/*------------------------------------------------------------------------- + * + * nodeLockRows.h + * + * + * + * Portions Copyright (c) 1996-2009, PostgreSQL Global Development Group + * Portions Copyright (c) 1994, Regents of the University of California + * + * $PostgreSQL: pgsql/src/include/executor/nodeLockRows.h,v 1.1 2009/10/12 18:10:51 tgl Exp $ + * + *------------------------------------------------------------------------- + */ +#ifndef NODELOCKROWS_H +#define NODELOCKROWS_H + +#include "nodes/execnodes.h" + +extern LockRowsState *ExecInitLockRows(LockRows *node, EState *estate, int eflags); +extern TupleTableSlot *ExecLockRows(LockRowsState *node); +extern void ExecEndLockRows(LockRowsState *node); +extern void ExecReScanLockRows(LockRowsState *node, ExprContext *exprCtxt); + +#endif /* NODELOCKROWS_H */ |