1996-07-09 02:22:35 -04:00
|
|
|
/*-------------------------------------------------------------------------
|
|
|
|
|
*
|
|
|
|
|
* nodeSort.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: nodeSort.h,v 1.3 1997/09/08 02:36:40 momjian Exp $
|
1996-07-09 02:22:35 -04:00
|
|
|
*
|
|
|
|
|
*-------------------------------------------------------------------------
|
|
|
|
|
*/
|
1997-09-07 01:04:48 -04:00
|
|
|
#ifndef NODESORT_H
|
|
|
|
|
#define NODESORT_H
|
1996-07-09 02:22:35 -04:00
|
|
|
|
1997-09-07 01:04:48 -04:00
|
|
|
extern TupleTableSlot *ExecSort(Sort * node);
|
1997-09-07 22:41:22 -04:00
|
|
|
extern bool ExecInitSort(Sort * node, EState * estate, Plan * parent);
|
|
|
|
|
extern int ExecCountSlotsSort(Sort * node);
|
|
|
|
|
extern void ExecEndSort(Sort * node);
|
|
|
|
|
extern void ExecSortMarkPos(Sort * node);
|
|
|
|
|
extern void ExecSortRestrPos(Sort * node);
|
1996-07-09 02:22:35 -04:00
|
|
|
|
1997-09-07 01:04:48 -04:00
|
|
|
#endif /* NODESORT_H */
|