2000-10-26 17:38:24 -04:00
|
|
|
/*-------------------------------------------------------------------------
|
|
|
|
|
*
|
|
|
|
|
* nodeLimit.h
|
|
|
|
|
*
|
|
|
|
|
*
|
|
|
|
|
*
|
2024-01-03 20:49:05 -05:00
|
|
|
* Portions Copyright (c) 1996-2024, PostgreSQL Global Development Group
|
2000-10-26 17:38:24 -04:00
|
|
|
* Portions Copyright (c) 1994, Regents of the University of California
|
|
|
|
|
*
|
2010-09-20 16:08:53 -04:00
|
|
|
* src/include/executor/nodeLimit.h
|
2000-10-26 17:38:24 -04:00
|
|
|
*
|
|
|
|
|
*-------------------------------------------------------------------------
|
|
|
|
|
*/
|
|
|
|
|
#ifndef NODELIMIT_H
|
|
|
|
|
#define NODELIMIT_H
|
|
|
|
|
|
2002-12-05 10:50:39 -05:00
|
|
|
#include "nodes/execnodes.h"
|
2000-10-26 17:38:24 -04:00
|
|
|
|
2006-02-27 23:10:28 -05:00
|
|
|
extern LimitState *ExecInitLimit(Limit *node, EState *estate, int eflags);
|
2002-12-05 10:50:39 -05:00
|
|
|
extern void ExecEndLimit(LimitState *node);
|
2010-07-12 13:01:06 -04:00
|
|
|
extern void ExecReScanLimit(LimitState *node);
|
2001-10-28 01:26:15 -05:00
|
|
|
|
2000-10-26 17:38:24 -04:00
|
|
|
#endif /* NODELIMIT_H */
|