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

数据库系统

开发平台:

Unix_Linux

  1. /*-------------------------------------------------------------------------
  2.  *
  3.  * parse_agg.h
  4.  *
  5.  *
  6.  *
  7.  * Copyright (c) 1994, Regents of the University of California
  8.  *
  9.  * $Id: parse_agg.h,v 1.10 1999/05/25 22:43:16 momjian Exp $
  10.  *
  11.  *-------------------------------------------------------------------------
  12.  */
  13. #ifndef PARSE_AGG_H
  14. #define PARSE_AGG_H
  15. #include <nodes/nodes.h>
  16. #include <nodes/parsenodes.h>
  17. #include <nodes/primnodes.h>
  18. #include <parser/parse_node.h>
  19. extern void AddAggToParseState(ParseState *pstate, Aggref *aggref);
  20. extern void parseCheckAggregates(ParseState *pstate, Query *qry);
  21. extern Aggref *ParseAgg(ParseState *pstate, char *aggname, Oid basetype,
  22.  List *target, int precedence);
  23. extern void agg_error(char *caller, char *aggname, Oid basetypeID);
  24. #endif  /* PARSE_AGG_H */