summaryrefslogtreecommitdiff
path: root/src/include/executor/nodeSubqueryscan.h
diff options
context:
space:
mode:
Diffstat (limited to 'src/include/executor/nodeSubqueryscan.h')
-rw-r--r--src/include/executor/nodeSubqueryscan.h25
1 files changed, 0 insertions, 25 deletions
diff --git a/src/include/executor/nodeSubqueryscan.h b/src/include/executor/nodeSubqueryscan.h
deleted file mode 100644
index e1a5f01aaf2..00000000000
--- a/src/include/executor/nodeSubqueryscan.h
+++ /dev/null
@@ -1,25 +0,0 @@
-/*-------------------------------------------------------------------------
- *
- * nodeSubqueryscan.h
- *
- *
- *
- * Portions Copyright (c) 1996-2002, PostgreSQL Global Development Group
- * Portions Copyright (c) 1994, Regents of the University of California
- *
- * $Id: nodeSubqueryscan.h,v 1.6 2002/06/20 20:29:49 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 */