]> granicus.if.org Git - postgresql/blobdiff - src/include/executor/nodeResult.h
Fix initialization of fake LSN for unlogged relations
[postgresql] / src / include / executor / nodeResult.h
index 2dcb411db948297c23580d13cc2e42f8950ed56a..af5fb60a6781e84cbc1409fbeaf1db6f1f259e3c 100644 (file)
@@ -1,21 +1,25 @@
 /*-------------------------------------------------------------------------
  *
- * nodeResult.h--
+ * nodeResult.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: nodeResult.h,v 1.3 1997/09/08 02:36:38 momjian Exp $
+ * src/include/executor/nodeResult.h
  *
  *-------------------------------------------------------------------------
  */
 #ifndef NODERESULT_H
 #define NODERESULT_H
 
-extern TupleTableSlot *ExecResult(Result * node);
-extern bool ExecInitResult(Result * node, EState * estate, Plan * parent);
-extern int     ExecCountSlotsResult(Result * node);
-extern void ExecEndResult(Result * node);
+#include "nodes/execnodes.h"
+
+extern ResultState *ExecInitResult(Result *node, EState *estate, int eflags);
+extern void ExecEndResult(ResultState *node);
+extern void ExecResultMarkPos(ResultState *node);
+extern void ExecResultRestrPos(ResultState *node);
+extern void ExecReScanResult(ResultState *node);
 
 #endif                                                 /* NODERESULT_H */