]> granicus.if.org Git - postgresql/blobdiff - src/include/executor/nodeUnique.h
pgindent run for 8.2.
[postgresql] / src / include / executor / nodeUnique.h
index ba4112cb8deee20796e30a833969cba86e0b1500..9e3670d56147b4f95d3670fd42aca5f02478d257 100644 (file)
@@ -1,26 +1,25 @@
 /*-------------------------------------------------------------------------
  *
- * nodeUnique.h--
+ * nodeUnique.h
  *
  *
  *
- * Copyright (c) 1994, Regents of the University of California
+ * Portions Copyright (c) 1996-2006, PostgreSQL Global Development Group
+ * Portions Copyright (c) 1994, Regents of the University of California
  *
- * $Id: nodeUnique.h,v 1.6 1998/02/23 06:27:56 vadim Exp $
+ * $PostgreSQL: pgsql/src/include/executor/nodeUnique.h,v 1.22 2006/03/05 15:58:56 momjian Exp $
  *
  *-------------------------------------------------------------------------
  */
 #ifndef NODEUNIQUE_H
 #define NODEUNIQUE_H
 
-#include "executor/tuptable.h"
 #include "nodes/execnodes.h"
-#include "nodes/plannodes.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 void ExecReScanUnique(Unique *node, ExprContext *exprCtxt, Plan *parent);
+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 */