summaryrefslogtreecommitdiff
path: root/src/include/executor/nodeNestloop.h
diff options
context:
space:
mode:
Diffstat (limited to 'src/include/executor/nodeNestloop.h')
-rw-r--r--src/include/executor/nodeNestloop.h26
1 files changed, 0 insertions, 26 deletions
diff --git a/src/include/executor/nodeNestloop.h b/src/include/executor/nodeNestloop.h
deleted file mode 100644
index e6224753edc..00000000000
--- a/src/include/executor/nodeNestloop.h
+++ /dev/null
@@ -1,26 +0,0 @@
-/*-------------------------------------------------------------------------
- *
- * nodeNestloop.h
- *
- *
- *
- * Portions Copyright (c) 1996-2002, PostgreSQL Global Development Group
- * Portions Copyright (c) 1994, Regents of the University of California
- *
- * $Id: nodeNestloop.h,v 1.18 2002/06/20 20:29:49 momjian Exp $
- *
- *-------------------------------------------------------------------------
- */
-#ifndef NODENESTLOOP_H
-#define NODENESTLOOP_H
-
-#include "nodes/plannodes.h"
-
-extern TupleTableSlot *ExecNestLoop(NestLoop *node);
-extern bool ExecInitNestLoop(NestLoop *node, EState *estate, Plan *parent);
-extern int ExecCountSlotsNestLoop(NestLoop *node);
-extern void ExecEndNestLoop(NestLoop *node);
-extern void ExecReScanNestLoop(NestLoop *node, ExprContext *exprCtxt,
- Plan *parent);
-
-#endif /* NODENESTLOOP_H */