2008-10-04 17:56:55 -04:00
|
|
|
/*-------------------------------------------------------------------------
|
|
|
|
|
*
|
|
|
|
|
* nodeWorktablescan.h
|
|
|
|
|
*
|
|
|
|
|
*
|
|
|
|
|
*
|
2024-01-03 20:49:05 -05:00
|
|
|
* Portions Copyright (c) 1996-2024, PostgreSQL Global Development Group
|
2008-10-04 17:56:55 -04:00
|
|
|
* Portions Copyright (c) 1994, Regents of the University of California
|
|
|
|
|
*
|
2010-09-20 16:08:53 -04:00
|
|
|
* src/include/executor/nodeWorktablescan.h
|
2008-10-04 17:56:55 -04:00
|
|
|
*
|
|
|
|
|
*-------------------------------------------------------------------------
|
|
|
|
|
*/
|
|
|
|
|
#ifndef NODEWORKTABLESCAN_H
|
|
|
|
|
#define NODEWORKTABLESCAN_H
|
|
|
|
|
|
|
|
|
|
#include "nodes/execnodes.h"
|
|
|
|
|
|
|
|
|
|
extern WorkTableScanState *ExecInitWorkTableScan(WorkTableScan *node, EState *estate, int eflags);
|
2010-07-12 13:01:06 -04:00
|
|
|
extern void ExecReScanWorkTableScan(WorkTableScanState *node);
|
2008-10-04 17:56:55 -04:00
|
|
|
|
|
|
|
|
#endif /* NODEWORKTABLESCAN_H */
|