Fix xslt_process() to ensure that it inserts a NULL terminator after the
[PostgreSQL.git] / src / include / executor / nodeUnique.h
blobbec791adc7bc09e8218b2bcb6e030b800233c257
1 /*-------------------------------------------------------------------------
3 * nodeUnique.h
7 * Portions Copyright (c) 1996-2009, 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 */