2009-10-12 14:10:51 -04:00
|
|
|
/*-------------------------------------------------------------------------
|
|
|
|
|
*
|
|
|
|
|
* nodeLockRows.h
|
|
|
|
|
*
|
|
|
|
|
*
|
|
|
|
|
*
|
2010-01-02 11:58:17 -05:00
|
|
|
* Portions Copyright (c) 1996-2010, PostgreSQL Global Development Group
|
2009-10-12 14:10:51 -04:00
|
|
|
* Portions Copyright (c) 1994, Regents of the University of California
|
|
|
|
|
*
|
2010-07-12 13:01:06 -04:00
|
|
|
* $PostgreSQL: pgsql/src/include/executor/nodeLockRows.h,v 1.3 2010/07/12 17:01:06 tgl Exp $
|
2009-10-12 14:10:51 -04:00
|
|
|
*
|
|
|
|
|
*-------------------------------------------------------------------------
|
|
|
|
|
*/
|
|
|
|
|
#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);
|
2010-07-12 13:01:06 -04:00
|
|
|
extern void ExecReScanLockRows(LockRowsState *node);
|
2009-10-12 14:10:51 -04:00
|
|
|
|
|
|
|
|
#endif /* NODELOCKROWS_H */
|