]> granicus.if.org Git - postgresql/blob - src/include/executor/nodeUnique.h
Clean up th ecompile process by centralizing the include files
[postgresql] / src / include / executor / nodeUnique.h
1 /*-------------------------------------------------------------------------
2  *
3  * nodeUnique.h--
4  *    
5  *
6  *
7  * Copyright (c) 1994, Regents of the University of California
8  *
9  * $Id: nodeUnique.h,v 1.1 1996/08/28 07:22:27 scrappy Exp $
10  *
11  *-------------------------------------------------------------------------
12  */
13 #ifndef NODEUNIQUE_H
14 #define NODEUNIQUE_H
15
16 extern TupleTableSlot *ExecUnique(Unique *node);
17 extern bool ExecInitUnique(Unique *node, EState *estate, Plan *parent);
18 extern int ExecCountSlotsUnique(Unique *node);
19 extern void ExecEndUnique(Unique *node);
20
21 #endif  /* NODEUNIQUE_H */