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

数据库系统

开发平台:

Unix_Linux

  1. /*-------------------------------------------------------------------------
  2.  *
  3.  * parse_clause.h
  4.  *
  5.  *
  6.  *
  7.  * Copyright (c) 1994, Regents of the University of California
  8.  *
  9.  * $Id: parse_clause.h,v 1.9 1999/05/26 12:56:41 momjian Exp $
  10.  *
  11.  *-------------------------------------------------------------------------
  12.  */
  13. #ifndef PARSE_CLAUSE_H
  14. #define PARSE_CLAUSE_H
  15. #include <nodes/pg_list.h>
  16. #include <nodes/nodes.h>
  17. #include <nodes/parsenodes.h>
  18. #include <nodes/primnodes.h>
  19. #include <parser/parse_node.h>
  20. extern void makeRangeTable(ParseState *pstate, char *relname, List *frmList, Node **qual);
  21. extern Node *transformWhereClause(ParseState *pstate, Node *where, Node *using);
  22. extern List *transformGroupClause(ParseState *pstate, List *grouplist,
  23.  List *targetlist);
  24. extern List *transformSortClause(ParseState *pstate,
  25. List *orderlist, List *sortClause,
  26. List *targetlist, char *uniqueFlag);
  27. #endif  /* PARSE_CLAUSE_H */