mirror of
https://github.com/simtactics/niotso.git
synced 2025-03-25 04:09:07 +00:00
24 lines
785 B
C
24 lines
785 B
C
/*-------------------------------------------------------------------------
|
|
*
|
|
* nodeSubqueryscan.h
|
|
*
|
|
*
|
|
*
|
|
* Portions Copyright (c) 1996-2011, PostgreSQL Global Development Group
|
|
* Portions Copyright (c) 1994, Regents of the University of California
|
|
*
|
|
* src/include/executor/nodeSubqueryscan.h
|
|
*
|
|
*-------------------------------------------------------------------------
|
|
*/
|
|
#ifndef NODESUBQUERYSCAN_H
|
|
#define NODESUBQUERYSCAN_H
|
|
|
|
#include "nodes/execnodes.h"
|
|
|
|
extern SubqueryScanState *ExecInitSubqueryScan(SubqueryScan *node, EState *estate, int eflags);
|
|
extern TupleTableSlot *ExecSubqueryScan(SubqueryScanState *node);
|
|
extern void ExecEndSubqueryScan(SubqueryScanState *node);
|
|
extern void ExecReScanSubqueryScan(SubqueryScanState *node);
|
|
|
|
#endif /* NODESUBQUERYSCAN_H */
|