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

数据库系统

开发平台:

Unix_Linux

  1. /*-------------------------------------------------------------------------
  2.  *
  3.  * pg_description.h
  4.  *   definition of the system "description" relation (pg_description)
  5.  *
  6.  *
  7.  * Copyright (c) 1994, Regents of the University of California
  8.  *
  9.  * $Id: pg_description.h,v 1.8 1999/02/13 23:21:09 momjian Exp $
  10.  *
  11.  * NOTES
  12.  * the genbki.sh script reads this file and generates .bki
  13.  * information from the DATA() statements.
  14.  *
  15.  * XXX do NOT break up DATA() statements into multiple lines!
  16.  * the scripts are not as smart as you might think...
  17.  *
  18.  *-------------------------------------------------------------------------
  19.  */
  20. #ifndef PG_DESCRIPTION_H
  21. #define PG_DESCRIPTION_H
  22. /* ----------------
  23.  * postgres.h contains the system type definintions and the
  24.  * CATALOG(), BOOTSTRAP and DATA() sugar words so this file
  25.  * can be read by both genbki.sh and the C compiler.
  26.  * ----------------
  27.  */
  28. /* ----------------
  29.  * pg_description definition. cpp turns this into
  30.  * typedef struct FormData_pg_description
  31.  * ----------------
  32.  */
  33. CATALOG(pg_description)
  34. {
  35. Oid objoid;
  36. text description;
  37. } FormData_pg_description;
  38. /* ----------------
  39.  * Form_pg_description corresponds to a pointer to a tuple with
  40.  * the format of pg_description relation.
  41.  * ----------------
  42.  */
  43. typedef FormData_pg_description *Form_pg_description;
  44. /* ----------------
  45.  * compiler constants for pg_descrpition
  46.  * ----------------
  47.  */
  48. #define Natts_pg_description 2
  49. #define Anum_pg_description_objoid 1
  50. #define Anum_pg_description_description 2
  51. /* ----------------
  52.  * initial contents of pg_description
  53.  * ----------------
  54.  */
  55. /*
  56.  * Because the contents of this table are taken from the other *.h files,
  57.  * there is no initialization. It is loaded from initdb using a COPY
  58.  * statement.
  59.  */
  60. #endif  /* PG_DESCRIPTION_H */