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

数据库系统

开发平台:

Unix_Linux

  1. /*-------------------------------------------------------------------------
  2.  *
  3.  * catalog_utils.h
  4.  *
  5.  *
  6.  *
  7.  * Copyright (c) 1994, Regents of the University of California
  8.  *
  9.  * $Id: parse_oper.h,v 1.7 1999/02/13 23:21:57 momjian Exp $
  10.  *
  11.  *-------------------------------------------------------------------------
  12.  */
  13. #ifndef PARSE_OPER_H
  14. #define PARSE_OPER_H
  15. #include <parser/parse_func.h>
  16. #include <parser/parse_node.h>
  17. typedef HeapTuple Operator;
  18. extern Oid any_ordering_op(int restype);
  19. extern Oid oprid(Operator op);
  20. extern Operator oper(char *op, Oid arg1, Oid arg2, bool noWarnings);
  21. extern Operator right_oper(char *op, Oid arg);
  22. extern Operator left_oper(char *op, Oid arg);
  23. extern Operator oper_exact(char *op, Oid arg1, Oid arg2, Node **ltree, Node **rtree, bool noWarnings);
  24. extern Operator oper_inexact(char *op, Oid arg1, Oid arg2, Node **ltree, Node **rtree, bool noWarnings);
  25. #endif  /* PARSE_OPER_H */