mirror of
https://github.com/postgres/postgres.git
synced 2026-01-13 12:22:55 +03:00
26 lines
873 B
C
26 lines
873 B
C
/*-------------------------------------------------------------------------
|
|
*
|
|
* nodeSubqueryscan.h
|
|
*
|
|
*
|
|
*
|
|
* Portions Copyright (c) 1996-2001, PostgreSQL Global Development Group
|
|
* Portions Copyright (c) 1994, Regents of the University of California
|
|
*
|
|
* $Id: nodeSubqueryscan.h,v 1.2 2001/01/24 19:43:23 momjian 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 */
|