]> granicus.if.org Git - postgresql/blobdiff - src/include/executor/nodeNestloop.h
Fix initialization of fake LSN for unlogged relations
[postgresql] / src / include / executor / nodeNestloop.h
index e6224753edc9cd29d15885c4fef8b9ff202d8c90..d1f94d3c126dfb0eb01c5661422a82227c0e958a 100644 (file)
@@ -4,23 +4,20 @@
  *
  *
  *
- * Portions Copyright (c) 1996-2002, PostgreSQL Global Development Group
+ * Portions Copyright (c) 1996-2019, 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 $
+ * src/include/executor/nodeNestloop.h
  *
  *-------------------------------------------------------------------------
  */
 #ifndef NODENESTLOOP_H
 #define NODENESTLOOP_H
 
-#include "nodes/plannodes.h"
+#include "nodes/execnodes.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);
+extern NestLoopState *ExecInitNestLoop(NestLoop *node, EState *estate, int eflags);
+extern void ExecEndNestLoop(NestLoopState *node);
+extern void ExecReScanNestLoop(NestLoopState *node);
 
-#endif   /* NODENESTLOOP_H */
+#endif                                                 /* NODENESTLOOP_H */