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

数据库系统

开发平台:

Unix_Linux

  1. /*-------------------------------------------------------------------------
  2.  *
  3.  * parse_target.h
  4.  *
  5.  *
  6.  *
  7.  * Copyright (c) 1994, Regents of the University of California
  8.  *
  9.  * $Id: parse_target.h,v 1.12 1999/05/17 17:03:46 momjian Exp $
  10.  *
  11.  *-------------------------------------------------------------------------
  12.  */
  13. #ifndef PARSE_TARGET_H
  14. #define PARSE_TARGET_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. #define EXPR_COLUMN_FIRST 1
  21. #define EXPR_RELATION_FIRST 2
  22. extern List *transformTargetList(ParseState *pstate, List *targetlist);
  23. extern List *makeTargetNames(ParseState *pstate, List *cols);
  24. extern TargetEntry *MakeTargetEntryIdent(ParseState *pstate,
  25.  Node *node,
  26.  char **resname,
  27.  char *refname,
  28.  char *colname,
  29.  bool resjunk);
  30. extern Node *CoerceTargetExpr(ParseState *pstate, Node *expr,
  31.  Oid type_id, Oid attrtype);
  32. TargetEntry *MakeTargetEntryExpr(ParseState *pstate,
  33. char *colname,
  34. Node *expr,
  35. List *arrayRef,
  36. bool resjunk);
  37. #endif  /* PARSE_TARGET_H */