home *** CD-ROM | disk | FTP | other *** search
/ Complete Linux / Complete Linux.iso / docs / apps / database / postgres / postgre4.z / postgre4 / src / parser / catalogutils.h < prev    next >
Encoding:
C/C++ Source or Header  |  1992-08-27  |  701 b   |  29 lines

  1. #ifndef _P_CATALOG_UTILS_H
  2. #define _P_CATALOG_UTILS_H \
  3.   "$Header: /private/postgres/src/parser/RCS/catalog_utils.h,v 1.12 1992/07/09 23:15:32 mao Exp $"
  4.  
  5. #include "tmp/postgres.h"
  6.  
  7. #include "access/htup.h"
  8. #include "utils/rel.h"
  9. #include "catalog/pg_proc.h"
  10. #include "catalog/pg_type.h"
  11. #include "catalog/syscache.h"
  12.     
  13. typedef HeapTuple    Type;
  14. typedef HeapTuple    Operator;
  15.  
  16. extern Type type(), get_id_type();
  17. extern OID att_typeid(), typeid();
  18. extern int16 tlen();
  19. extern bool tbyval();
  20. extern Relation get_rdesc(), get_rgdesc();
  21. extern char *outstr(), *instr(), *instr1(), *instr2();
  22. extern Operator oper(), right_oper(), left_oper();
  23. extern Name tname();
  24. extern bool func_get_detail();
  25.  
  26.  
  27.  
  28. #endif
  29.