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

数据库系统

开发平台:

Unix_Linux

  1. /*-------------------------------------------------------------------------
  2.  *
  3.  * pg_attrdef.h
  4.  *
  5.  *
  6.  * Copyright (c) 1994, Regents of the University of California
  7.  *
  8.  * NOTES
  9.  *   the genbki.sh script reads this file and generates .bki
  10.  *   information from the DATA() statements.
  11.  *
  12.  *-------------------------------------------------------------------------
  13.  */
  14. #ifndef PG_ATTRDEF_H
  15. #define PG_ATTRDEF_H
  16. /* ----------------
  17.  * postgres.h contains the system type definintions and the
  18.  * CATALOG(), BOOTSTRAP and DATA() sugar words so this file
  19.  * can be read by both genbki.sh and the C compiler.
  20.  * ----------------
  21.  */
  22. /* ----------------
  23.  * pg_attrdef definition. cpp turns this into
  24.  * typedef struct FormData_pg_attrdef
  25.  * ----------------
  26.  */
  27. CATALOG(pg_attrdef) BOOTSTRAP
  28. {
  29. Oid adrelid;
  30. int2 adnum;
  31. text adbin;
  32. text adsrc;
  33. } FormData_pg_attrdef;
  34. /* ----------------
  35.  * Form_pg_attrdef corresponds to a pointer to a tuple with
  36.  * the format of pg_attrdef relation.
  37.  * ----------------
  38.  */
  39. typedef FormData_pg_attrdef *Form_pg_attrdef;
  40. /* ----------------
  41.  * compiler constants for pg_attrdef
  42.  * ----------------
  43.  */
  44. #define Natts_pg_attrdef 4
  45. #define Anum_pg_attrdef_adrelid 1
  46. #define Anum_pg_attrdef_adnum 2
  47. #define Anum_pg_attrdef_adbin 3
  48. #define Anum_pg_attrdef_adsrc 4
  49. #endif  /* PG_ATTRDEF_H */