1 /*-------------------------------------------------------------------------
7 * Portions Copyright (c) 1996-2008, PostgreSQL Global Development Group
8 * Portions Copyright (c) 1994, Regents of the University of California
12 *-------------------------------------------------------------------------
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 */