nodeUnique.h 770 字节
Newer Older
1 2 3
/*-------------------------------------------------------------------------
 *
 * nodeUnique.h--
4
 *
5 6 7 8
 *
 *
 * Copyright (c) 1994, Regents of the University of California
 *
9
 * $Id: nodeUnique.h,v 1.6 1998/02/23 06:27:56 vadim Exp $
10 11 12
 *
 *-------------------------------------------------------------------------
 */
13 14
#ifndef NODEUNIQUE_H
#define NODEUNIQUE_H
15

B
Bruce Momjian 已提交
16 17 18 19
#include "executor/tuptable.h"
#include "nodes/execnodes.h"
#include "nodes/plannodes.h"

20 21 22 23
extern TupleTableSlot *ExecUnique(Unique *node);
extern bool ExecInitUnique(Unique *node, EState *estate, Plan *parent);
extern int	ExecCountSlotsUnique(Unique *node);
extern void ExecEndUnique(Unique *node);
24
extern void ExecReScanUnique(Unique *node, ExprContext *exprCtxt, Plan *parent);
25

26
#endif							/* NODEUNIQUE_H */