]> granicus.if.org Git - postgresql/blobdiff - src/include/executor/nodeUnique.h
pgindent run for 8.2.
[postgresql] / src / include / executor / nodeUnique.h
index a3c143e34591105939421aaedbe21d152d9fb10a..9e3670d56147b4f95d3670fd42aca5f02478d257 100644 (file)
@@ -1,21 +1,25 @@
 /*-------------------------------------------------------------------------
  *
- * nodeUnique.h--
- *    
+ * nodeUnique.h
  *
  *
- * Copyright (c) 1994, Regents of the University of California
  *
- * $Id: nodeUnique.h,v 1.1 1996/08/28 07:22:27 scrappy Exp $
+ * Portions Copyright (c) 1996-2006, PostgreSQL Global Development Group
+ * Portions Copyright (c) 1994, Regents of the University of California
+ *
+ * $PostgreSQL: pgsql/src/include/executor/nodeUnique.h,v 1.22 2006/03/05 15:58:56 momjian Exp $
  *
  *-------------------------------------------------------------------------
  */
-#ifndef        NODEUNIQUE_H
-#define        NODEUNIQUE_H
+#ifndef NODEUNIQUE_H
+#define NODEUNIQUE_H
+
+#include "nodes/execnodes.h"
 
-extern TupleTableSlot *ExecUnique(Unique *node);
-extern bool ExecInitUnique(Unique *node, EState *estate, Plan *parent);
-extern int ExecCountSlotsUnique(Unique *node);
-extern void ExecEndUnique(Unique *node);
+extern int     ExecCountSlotsUnique(Unique *node);
+extern UniqueState *ExecInitUnique(Unique *node, EState *estate, int eflags);
+extern TupleTableSlot *ExecUnique(UniqueState *node);
+extern void ExecEndUnique(UniqueState *node);
+extern void ExecReScanUnique(UniqueState *node, ExprContext *exprCtxt);
 
-#endif /* NODEUNIQUE_H */
+#endif   /* NODEUNIQUE_H */