mirror of https://github.com/postgres/postgres
You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
26 lines
849 B
26 lines
849 B
|
26 years ago
|
/*-------------------------------------------------------------------------
|
||
|
|
*
|
||
|
|
* nodeSubqueryscan.h
|
||
|
|
*
|
||
|
|
*
|
||
|
|
*
|
||
|
|
* Portions Copyright (c) 1996-2000, PostgreSQL, Inc
|
||
|
|
* Portions Copyright (c) 1994, Regents of the University of California
|
||
|
|
*
|
||
|
|
* $Id: nodeSubqueryscan.h,v 1.1 2000/09/29 18:21:38 tgl Exp $
|
||
|
|
*
|
||
|
|
*-------------------------------------------------------------------------
|
||
|
|
*/
|
||
|
|
#ifndef NODESUBQUERYSCAN_H
|
||
|
|
#define NODESUBQUERYSCAN_H
|
||
|
|
|
||
|
|
#include "nodes/plannodes.h"
|
||
|
|
|
||
|
|
extern TupleTableSlot *ExecSubqueryScan(SubqueryScan *node);
|
||
|
|
extern void ExecEndSubqueryScan(SubqueryScan *node);
|
||
|
|
extern bool ExecInitSubqueryScan(SubqueryScan *node, EState *estate, Plan *parent);
|
||
|
|
extern int ExecCountSlotsSubqueryScan(SubqueryScan *node);
|
||
|
|
extern void ExecSubqueryReScan(SubqueryScan *node, ExprContext *exprCtxt, Plan *parent);
|
||
|
|
|
||
|
|
#endif /* NODESUBQUERYSCAN_H */
|