1996-07-09 02:22:35 -04:00
|
|
|
/*-------------------------------------------------------------------------
|
|
|
|
|
*
|
|
|
|
|
* nodeUnique.h--
|
1997-09-07 01:04:48 -04:00
|
|
|
*
|
1996-07-09 02:22:35 -04:00
|
|
|
*
|
|
|
|
|
*
|
|
|
|
|
* Copyright (c) 1994, Regents of the University of California
|
|
|
|
|
*
|
1997-09-07 22:41:22 -04:00
|
|
|
* $Id: nodeUnique.h,v 1.3 1997/09/08 02:36:42 momjian Exp $
|
1996-07-09 02:22:35 -04:00
|
|
|
*
|
|
|
|
|
*-------------------------------------------------------------------------
|
|
|
|
|
*/
|
1997-09-07 01:04:48 -04:00
|
|
|
#ifndef NODEUNIQUE_H
|
|
|
|
|
#define NODEUNIQUE_H
|
1996-07-09 02:22:35 -04:00
|
|
|
|
1997-09-07 01:04:48 -04:00
|
|
|
extern TupleTableSlot *ExecUnique(Unique * node);
|
1997-09-07 22:41:22 -04:00
|
|
|
extern bool ExecInitUnique(Unique * node, EState * estate, Plan * parent);
|
|
|
|
|
extern int ExecCountSlotsUnique(Unique * node);
|
|
|
|
|
extern void ExecEndUnique(Unique * node);
|
1996-07-09 02:22:35 -04:00
|
|
|
|
1997-09-07 01:04:48 -04:00
|
|
|
#endif /* NODEUNIQUE_H */
|