diff options
Diffstat (limited to 'src/include/executor/nodeUnique.h')
-rw-r--r-- | src/include/executor/nodeUnique.h | 12 |
1 files changed, 6 insertions, 6 deletions
diff --git a/src/include/executor/nodeUnique.h b/src/include/executor/nodeUnique.h index f829b653389..d71997e531c 100644 --- a/src/include/executor/nodeUnique.h +++ b/src/include/executor/nodeUnique.h @@ -7,19 +7,19 @@ * Portions Copyright (c) 1996-2002, PostgreSQL Global Development Group * Portions Copyright (c) 1994, Regents of the University of California * - * $Id: nodeUnique.h,v 1.15 2002/06/20 20:29:49 momjian Exp $ + * $Id: nodeUnique.h,v 1.16 2002/12/05 15:50:38 tgl Exp $ * *------------------------------------------------------------------------- */ #ifndef NODEUNIQUE_H #define NODEUNIQUE_H -#include "nodes/plannodes.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 void ExecReScanUnique(Unique *node, ExprContext *exprCtxt, Plan *parent); +extern UniqueState *ExecInitUnique(Unique *node, EState *estate); +extern TupleTableSlot *ExecUnique(UniqueState *node); +extern void ExecEndUnique(UniqueState *node); +extern void ExecReScanUnique(UniqueState *node, ExprContext *exprCtxt); #endif /* NODEUNIQUE_H */ |