]> granicus.if.org Git - postgresql/blob - src/include/executor/nodeSort.h
Update copyright for 2016
[postgresql] / src / include / executor / nodeSort.h
1 /*-------------------------------------------------------------------------
2  *
3  * nodeSort.h
4  *
5  *
6  *
7  * Portions Copyright (c) 1996-2016, PostgreSQL Global Development Group
8  * Portions Copyright (c) 1994, Regents of the University of California
9  *
10  * src/include/executor/nodeSort.h
11  *
12  *-------------------------------------------------------------------------
13  */
14 #ifndef NODESORT_H
15 #define NODESORT_H
16
17 #include "nodes/execnodes.h"
18
19 extern SortState *ExecInitSort(Sort *node, EState *estate, int eflags);
20 extern TupleTableSlot *ExecSort(SortState *node);
21 extern void ExecEndSort(SortState *node);
22 extern void ExecSortMarkPos(SortState *node);
23 extern void ExecSortRestrPos(SortState *node);
24 extern void ExecReScanSort(SortState *node);
25
26 #endif   /* NODESORT_H */