nodeSort.h
上传用户:blenddy
上传日期:2007-01-07
资源大小:6495k
文件大小:1k
源码类别:

数据库系统

开发平台:

Unix_Linux

  1. /*-------------------------------------------------------------------------
  2.  *
  3.  * nodeSort.h
  4.  *
  5.  *
  6.  *
  7.  * Copyright (c) 1994, Regents of the University of California
  8.  *
  9.  * $Id: nodeSort.h,v 1.8 1999/02/13 23:21:28 momjian Exp $
  10.  *
  11.  *-------------------------------------------------------------------------
  12.  */
  13. #ifndef NODESORT_H
  14. #define NODESORT_H
  15. #include "executor/tuptable.h"
  16. #include "nodes/execnodes.h"
  17. #include "nodes/plannodes.h"
  18. extern TupleTableSlot *ExecSort(Sort *node);
  19. extern bool ExecInitSort(Sort *node, EState *estate, Plan *parent);
  20. extern int ExecCountSlotsSort(Sort *node);
  21. extern void ExecEndSort(Sort *node);
  22. extern void ExecSortMarkPos(Sort *node);
  23. extern void ExecSortRestrPos(Sort *node);
  24. extern void ExecReScanSort(Sort *node, ExprContext *exprCtxt, Plan *parent);
  25. #endif  /* NODESORT_H */