mirror of
https://github.com/postgres/postgres.git
synced 2026-02-03 20:40:14 -05:00
25 lines
831 B
C
25 lines
831 B
C
/*-------------------------------------------------------------------------
|
|
*
|
|
* nodeUnique.h
|
|
*
|
|
*
|
|
*
|
|
* Portions Copyright (c) 1996-2006, PostgreSQL Global Development Group
|
|
* Portions Copyright (c) 1994, Regents of the University of California
|
|
*
|
|
* $PostgreSQL: pgsql/src/include/executor/nodeUnique.h,v 1.22 2006/03/05 15:58:56 momjian Exp $
|
|
*
|
|
*-------------------------------------------------------------------------
|
|
*/
|
|
#ifndef NODEUNIQUE_H
|
|
#define NODEUNIQUE_H
|
|
|
|
#include "nodes/execnodes.h"
|
|
|
|
extern int ExecCountSlotsUnique(Unique *node);
|
|
extern UniqueState *ExecInitUnique(Unique *node, EState *estate, int eflags);
|
|
extern TupleTableSlot *ExecUnique(UniqueState *node);
|
|
extern void ExecEndUnique(UniqueState *node);
|
|
extern void ExecReScanUnique(UniqueState *node, ExprContext *exprCtxt);
|
|
|
|
#endif /* NODEUNIQUE_H */
|