diff options
Diffstat (limited to 'src/include/executor/nodeNestloop.h')
-rw-r--r-- | src/include/executor/nodeNestloop.h | 5 |
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 */ |