Fix pg_dump bug in the database-level collation patch. "datcollate" and
[PostgreSQL.git] / src / include / executor / nodeUnique.h
blobd3fc7255e043a4f0f380c2272da117d41ab6ad26
1 /*-------------------------------------------------------------------------
3 * nodeUnique.h
7 * Portions Copyright (c) 1996-2008, PostgreSQL Global Development Group
8 * Portions Copyright (c) 1994, Regents of the University of California
10 * $PostgreSQL$
12 *-------------------------------------------------------------------------
14 #ifndef NODEUNIQUE_H
15 #define NODEUNIQUE_H
17 #include "nodes/execnodes.h"
19 extern int ExecCountSlotsUnique(Unique *node);
20 extern UniqueState *ExecInitUnique(Unique *node, EState *estate, int eflags);
21 extern TupleTableSlot *ExecUnique(UniqueState *node);
22 extern void ExecEndUnique(UniqueState *node);
23 extern void ExecReScanUnique(UniqueState *node, ExprContext *exprCtxt);
25 #endif /* NODEUNIQUE_H */