aboutsummaryrefslogtreecommitdiff
path: root/src/include/executor
diff options
context:
space:
mode:
authorBruce Momjian <bruce@momjian.us>1999-02-12 17:25:05 +0000
committerBruce Momjian <bruce@momjian.us>1999-02-12 17:25:05 +0000
commitad4b27ac3f281401b7e8a717f100e403a222224d (patch)
treefb61a925ddb0db5e1f088ffee70780edb30424c1 /src/include/executor
parentc0d17c7aee68bb73140d11dc03973157e6ca7e76 (diff)
downloadpostgresql-ad4b27ac3f281401b7e8a717f100e403a222224d.tar.gz
postgresql-ad4b27ac3f281401b7e8a717f100e403a222224d.zip
Optimizer cleanup.
Diffstat (limited to 'src/include/executor')
-rw-r--r--src/include/executor/nodeNestloop.h5
1 files changed, 3 insertions, 2 deletions
diff --git a/src/include/executor/nodeNestloop.h b/src/include/executor/nodeNestloop.h
index 2c79b4d62a2..21cf4078382 100644
--- a/src/include/executor/nodeNestloop.h
+++ b/src/include/executor/nodeNestloop.h
@@ -6,7 +6,7 @@
*
* Copyright (c) 1994, Regents of the University of California
*
- * $Id: nodeNestloop.h,v 1.7 1998/09/01 04:36:03 momjian Exp $
+ * $Id: nodeNestloop.h,v 1.8 1999/02/12 17:24:55 momjian Exp $
*
*-------------------------------------------------------------------------
*/
@@ -21,6 +21,7 @@ extern TupleTableSlot *ExecNestLoop(NestLoop *node, Plan *parent);
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);
+extern void ExecReScanNestLoop(NestLoop *node, ExprContext *exprCtxt,
+ Plan *parent);
#endif /* NODENESTLOOP_H */