]> 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 1fe271c070258f48885ffa35ccc7b32fba0d5392..d1f94d3c126dfb0eb01c5661422a82227c0e958a 100644 (file)
@@ -1,21 +1,23 @@
 /*-------------------------------------------------------------------------
  *
- * nodeNestloop.h--
- *    
+ * nodeNestloop.h
  *
  *
- * Copyright (c) 1994, Regents of the University of California
  *
- * $Id: nodeNestloop.h,v 1.1 1996/08/28 07:22:23 scrappy Exp $
+ * Portions Copyright (c) 1996-2019, PostgreSQL Global Development Group
+ * Portions Copyright (c) 1994, Regents of the University of California
+ *
+ * src/include/executor/nodeNestloop.h
  *
  *-------------------------------------------------------------------------
  */
-#ifndef        NODENESTLOOP_H
-#define        NODENESTLOOP_H
+#ifndef NODENESTLOOP_H
+#define NODENESTLOOP_H
+
+#include "nodes/execnodes.h"
 
-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 NestLoopState *ExecInitNestLoop(NestLoop *node, EState *estate, int eflags);
+extern void ExecEndNestLoop(NestLoopState *node);
+extern void ExecReScanNestLoop(NestLoopState *node);
 
-#endif /* NODENESTLOOP_H */
+#endif                                                 /* NODENESTLOOP_H */