]> 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 2c79b4d62a258eb9aeb9e22a4df60cb66c13f6bd..d1f94d3c126dfb0eb01c5661422a82227c0e958a 100644 (file)
@@ -1,26 +1,23 @@
 /*-------------------------------------------------------------------------
  *
- * nodeNestloop.h--
+ * nodeNestloop.h
  *
  *
  *
- * Copyright (c) 1994, Regents of the University of California
+ * Portions Copyright (c) 1996-2019, PostgreSQL Global Development Group
+ * Portions Copyright (c) 1994, Regents of the University of California
  *
- * $Id: nodeNestloop.h,v 1.7 1998/09/01 04:36:03 momjian Exp $
+ * src/include/executor/nodeNestloop.h
  *
  *-------------------------------------------------------------------------
  */
 #ifndef NODENESTLOOP_H
 #define NODENESTLOOP_H
 
-#include "executor/tuptable.h"
 #include "nodes/execnodes.h"
-#include "nodes/plannodes.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 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 */